Candy Valley
candyvalley_wiki
https://candyvalley.shoutwiki.com/wiki/Main_Page
MediaWiki 1.35.13
first-letter
Media
Special
Talk
User
User talk
Candy Valley
Candy Valley talk
File
File talk
MediaWiki
MediaWiki talk
Template
Template talk
Help
Help talk
Category
Category talk
Module
Module talk
Gadget
Gadget talk
Gadget definition
Gadget definition talk
Template:Navbox
10
2
9
2023-01-14T03:06:05Z
TAPCLAPgamefansince2018
30634029
Created page with "{{#invoke: Navbox | navbox }}<noinclude>{{documentation}}</noinclude>"
wikitext
text/x-wiki
{{#invoke: Navbox | navbox }}<noinclude>{{documentation}}</noinclude>
e85db5f639489662dfb395e09e2a6dacb8d02b4c
Module:Navbox
828
3
10
2023-01-14T03:07:16Z
TAPCLAPgamefansince2018
30634029
Created page with "local p = {} local navbar = require('Module:Navbar')._navbar local cfg = mw.loadData('Module:Navbox/configuration') local getArgs -- lazily initialized local args local format..."
Scribunto
text/plain
local p = {}
local navbar = require('Module:Navbar')._navbar
local cfg = mw.loadData('Module:Navbox/configuration')
local getArgs -- lazily initialized
local args
local format = string.format
local function striped(wikitext, border)
-- Return wikitext with markers replaced for odd/even striping.
-- Child (subgroup) navboxes are flagged with a category that is removed
-- by parent navboxes. The result is that the category shows all pages
-- where a child navbox is not contained in a parent navbox.
local orphanCat = cfg.category.orphan
if border == cfg.keyword.border_subgroup and args[cfg.arg.orphan] ~= cfg.keyword.orphan_yes then
-- No change; striping occurs in outermost navbox.
return wikitext .. orphanCat
end
local first, second = cfg.class.navbox_odd_part, cfg.class.navbox_even_part
if args[cfg.arg.evenodd] then
if args[cfg.arg.evenodd] == cfg.keyword.evenodd_swap then
first, second = second, first
else
first = args[cfg.arg.evenodd]
second = first
end
end
local changer
if first == second then
changer = first
else
local index = 0
changer = function (code)
if code == '0' then
-- Current occurrence is for a group before a nested table.
-- Set it to first as a valid although pointless class.
-- The next occurrence will be the first row after a title
-- in a subgroup and will also be first.
index = 0
return first
end
index = index + 1
return index % 2 == 1 and first or second
end
end
local regex = orphanCat:gsub('([%[%]])', '%%%1')
return (wikitext:gsub(regex, ''):gsub(cfg.marker.regex, changer)) -- () omits gsub count
end
local function processItem(item, nowrapitems)
if item:sub(1, 2) == '{|' then
-- Applying nowrap to lines in a table does not make sense.
-- Add newlines to compensate for trim of x in |parm=x in a template.
return '\n' .. item ..'\n'
end
if nowrapitems == cfg.keyword.nowrapitems_yes then
local lines = {}
for line in (item .. '\n'):gmatch('([^\n]*)\n') do
local prefix, content = line:match('^([*:;#]+)%s*(.*)')
if prefix and not content:match(cfg.pattern.nowrap) then
line = format(cfg.nowrap_item, prefix, content)
end
table.insert(lines, line)
end
item = table.concat(lines, '\n')
end
if item:match('^[*:;#]') then
return '\n' .. item ..'\n'
end
return item
end
local function has_navbar()
return args[cfg.arg.navbar] ~= cfg.keyword.navbar_off
and args[cfg.arg.navbar] ~= cfg.keyword.navbar_plain
and (
args[cfg.arg.name]
or mw.getCurrentFrame():getParent():getTitle():gsub(cfg.pattern.sandbox, '')
~= cfg.pattern.navbox
)
end
local function renderNavBar(titleCell)
if has_navbar() then
titleCell:wikitext(navbar{
[cfg.navbar.name] = args[cfg.arg.name],
[cfg.navbar.mini] = 1,
[cfg.navbar.fontstyle] = (args[cfg.arg.basestyle] or '') .. ';' ..
(args[cfg.arg.titlestyle] or '') ..
';background:none transparent;border:none;box-shadow:none;padding:0;'
})
end
end
local function renderTitleRow(tbl)
if not args[cfg.arg.title] then return end
local titleRow = tbl:tag('tr')
local titleCell = titleRow:tag('th'):attr('scope', 'col')
local titleColspan = 2
if args[cfg.arg.imageleft] then titleColspan = titleColspan + 1 end
if args[cfg.arg.image] then titleColspan = titleColspan + 1 end
titleCell
:cssText(args[cfg.arg.basestyle])
:cssText(args[cfg.arg.titlestyle])
:addClass(cfg.class.navbox_title)
:attr('colspan', titleColspan)
renderNavBar(titleCell)
titleCell
:tag('div')
-- id for aria-labelledby attribute
:attr('id', mw.uri.anchorEncode(args[cfg.arg.title]))
:addClass(args[cfg.arg.titleclass])
:css('font-size', '114%')
:css('margin', '0 4em')
:wikitext(processItem(args[cfg.arg.title]))
end
local function getAboveBelowColspan()
local ret = 2
if args[cfg.arg.imageleft] then ret = ret + 1 end
if args[cfg.arg.image] then ret = ret + 1 end
return ret
end
local function renderAboveRow(tbl)
if not args[cfg.arg.above] then return end
tbl:tag('tr')
:tag('td')
:addClass(cfg.class.navbox_abovebelow)
:addClass(args[cfg.arg.aboveclass])
:cssText(args[cfg.arg.basestyle])
:cssText(args[cfg.arg.abovestyle])
:attr('colspan', getAboveBelowColspan())
:tag('div')
-- id for aria-labelledby attribute, if no title
:attr('id', args[cfg.arg.title] and nil or mw.uri.anchorEncode(args[cfg.arg.above]))
:wikitext(processItem(args[cfg.arg.above], args[cfg.arg.nowrapitems]))
end
local function renderBelowRow(tbl)
if not args[cfg.arg.below] then return end
tbl:tag('tr')
:tag('td')
:addClass(cfg.class.navbox_abovebelow)
:addClass(args[cfg.arg.belowclass])
:cssText(args[cfg.arg.basestyle])
:cssText(args[cfg.arg.belowstyle])
:attr('colspan', getAboveBelowColspan())
:tag('div')
:wikitext(processItem(args[cfg.arg.below], args[cfg.arg.nowrapitems]))
end
local function renderListRow(tbl, index, listnum, listnums_size)
local row = tbl:tag('tr')
if index == 1 and args[cfg.arg.imageleft] then
row
:tag('td')
:addClass(cfg.class.noviewer)
:addClass(cfg.class.navbox_image)
:addClass(args[cfg.arg.imageclass])
:css('width', '1px') -- Minimize width
:css('padding', '0 2px 0 0')
:cssText(args[cfg.arg.imageleftstyle])
:attr('rowspan', listnums_size)
:tag('div')
:wikitext(processItem(args[cfg.arg.imageleft]))
end
local group_and_num = format(cfg.arg.group_and_num, listnum)
local groupstyle_and_num = format(cfg.arg.groupstyle_and_num, listnum)
if args[group_and_num] then
local groupCell = row:tag('th')
-- id for aria-labelledby attribute, if lone group with no title or above
if listnum == 1 and not (args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group2]) then
groupCell
:attr('id', mw.uri.anchorEncode(args[cfg.arg.group1]))
end
groupCell
:attr('scope', 'row')
:addClass(cfg.class.navbox_group)
:addClass(args[cfg.arg.groupclass])
:cssText(args[cfg.arg.basestyle])
-- If groupwidth not specified, minimize width
:css('width', args[cfg.arg.groupwidth] or '1%')
groupCell
:cssText(args[cfg.arg.groupstyle])
:cssText(args[groupstyle_and_num])
:wikitext(args[group_and_num])
end
local listCell = row:tag('td')
if args[group_and_num] then
listCell
:addClass(cfg.class.navbox_list_with_group)
else
listCell:attr('colspan', 2)
end
if not args[cfg.arg.groupwidth] then
listCell:css('width', '100%')
end
local rowstyle -- usually nil so cssText(rowstyle) usually adds nothing
if index % 2 == 1 then
rowstyle = args[cfg.arg.oddstyle]
else
rowstyle = args[cfg.arg.evenstyle]
end
local list_and_num = format(cfg.arg.list_and_num, listnum)
local listText = args[list_and_num]
local oddEven = cfg.marker.oddeven
if listText:sub(1, 12) == '</div><table' then
-- Assume list text is for a subgroup navbox so no automatic striping for this row.
oddEven = listText:find(cfg.pattern.navbox_title) and cfg.marker.restart or cfg.class.navbox_odd_part
end
local liststyle_and_num = format(cfg.arg.liststyle_and_num, listnum)
local listclass_and_num = format(cfg.arg.listclass_and_num, listnum)
listCell
:css('padding', '0')
:cssText(args[cfg.arg.liststyle])
:cssText(rowstyle)
:cssText(args[liststyle_and_num])
:addClass(cfg.class.navbox_list)
:addClass(cfg.class.navbox_part .. oddEven)
:addClass(args[cfg.arg.listclass])
:addClass(args[listclass_and_num])
:tag('div')
:css('padding',
(index == 1 and args[cfg.arg.list1padding]) or args[cfg.arg.listpadding] or '0 0.25em'
)
:wikitext(processItem(listText, args[cfg.arg.nowrapitems]))
if index == 1 and args[cfg.arg.image] then
row
:tag('td')
:addClass(cfg.class.noviewer)
:addClass(cfg.class.navbox_image)
:addClass(args[cfg.arg.imageclass])
:css('width', '1px') -- Minimize width
:css('padding', '0 0 0 2px')
:cssText(args[cfg.arg.imagestyle])
:attr('rowspan', listnums_size)
:tag('div')
:wikitext(processItem(args[cfg.arg.image]))
end
end
local function has_list_class(htmlclass)
local patterns = {
'^' .. htmlclass .. '$',
'%s' .. htmlclass .. '$',
'^' .. htmlclass .. '%s',
'%s' .. htmlclass .. '%s'
}
for arg, _ in pairs(args) do
if type(arg) == 'string' and mw.ustring.find(arg, cfg.pattern.class) then
for _, pattern in ipairs(patterns) do
if mw.ustring.find(args[arg] or '', pattern) then
return true
end
end
end
end
return false
end
-- there are a lot of list classes in the wild, so we add their TemplateStyles
local function add_list_styles()
local frame = mw.getCurrentFrame()
local function add_list_templatestyles(htmlclass, templatestyles)
if has_list_class(htmlclass) then
return frame:extensionTag{
name = 'templatestyles', args = { src = templatestyles }
}
else
return ''
end
end
local hlist_styles = add_list_templatestyles('hlist', cfg.hlist_templatestyles)
local plainlist_styles = add_list_templatestyles('plainlist', cfg.plainlist_templatestyles)
-- a second workaround for [[phab:T303378]]
-- when that issue is fixed, we can actually use has_navbar not to emit the
-- tag here if we want
if has_navbar() and hlist_styles == '' then
hlist_styles = frame:extensionTag{
name = 'templatestyles', args = { src = cfg.hlist_templatestyles }
}
end
-- hlist -> plainlist is best-effort to preserve old Common.css ordering.
-- this ordering is not a guarantee because most navboxes will emit only
-- one of these classes [hlist_note]
return hlist_styles .. plainlist_styles
end
local function needsHorizontalLists(border)
if border == cfg.keyword.border_subgroup or args[cfg.arg.tracking] == cfg.keyword.tracking_no then
return false
end
return not has_list_class(cfg.pattern.hlist) and not has_list_class(cfg.pattern.plainlist)
end
local function hasBackgroundColors()
for _, key in ipairs({cfg.arg.titlestyle, cfg.arg.groupstyle,
cfg.arg.basestyle, cfg.arg.abovestyle, cfg.arg.belowstyle}) do
if tostring(args[key]):find('background', 1, true) then
return true
end
end
return false
end
local function hasBorders()
for _, key in ipairs({cfg.arg.groupstyle, cfg.arg.basestyle,
cfg.arg.abovestyle, cfg.arg.belowstyle}) do
if tostring(args[key]):find('border', 1, true) then
return true
end
end
return false
end
local function isIllegible()
local styleratio = require('Module:Color contrast')._styleratio
for key, style in pairs(args) do
if tostring(key):match(cfg.pattern.style) then
if styleratio{mw.text.unstripNoWiki(style)} < 4.5 then
return true
end
end
end
return false
end
local function getTrackingCategories(border)
local cats = {}
if needsHorizontalLists(border) then table.insert(cats, cfg.category.horizontal_lists) end
if hasBackgroundColors() then table.insert(cats, cfg.category.background_colors) end
if isIllegible() then table.insert(cats, cfg.category.illegible) end
if hasBorders() then table.insert(cats, cfg.category.borders) end
return cats
end
local function renderTrackingCategories(builder, border)
local title = mw.title.getCurrentTitle()
if title.namespace ~= 10 then return end -- not in template space
local subpage = title.subpageText
if subpage == cfg.keyword.subpage_doc or subpage == cfg.keyword.subpage_sandbox
or subpage == cfg.keyword.subpage_testcases then return end
for _, cat in ipairs(getTrackingCategories(border)) do
builder:wikitext('[[Category:' .. cat .. ']]')
end
end
local function renderMainTable(border, listnums)
local tbl = mw.html.create('table')
:addClass(cfg.class.nowraplinks)
:addClass(args[cfg.arg.bodyclass])
local state = args[cfg.arg.state]
if args[cfg.arg.title] and state ~= cfg.keyword.state_plain and state ~= cfg.keyword.state_off then
if state == cfg.keyword.state_collapsed then
state = cfg.class.collapsed
end
tbl
:addClass(cfg.class.collapsible)
:addClass(state or cfg.class.autocollapse)
end
tbl:css('border-spacing', 0)
if border == cfg.keyword.border_subgroup or border == cfg.keyword.border_none then
tbl
:addClass(cfg.class.navbox_subgroup)
:cssText(args[cfg.arg.bodystyle])
:cssText(args[cfg.arg.style])
else -- regular navbox - bodystyle and style will be applied to the wrapper table
tbl
:addClass(cfg.class.navbox_inner)
:css('background', 'transparent')
:css('color', 'inherit')
end
tbl:cssText(args[cfg.arg.innerstyle])
renderTitleRow(tbl)
renderAboveRow(tbl)
local listnums_size = #listnums
for i, listnum in ipairs(listnums) do
renderListRow(tbl, i, listnum, listnums_size)
end
renderBelowRow(tbl)
return tbl
end
local function add_navbox_styles(hiding_templatestyles)
local frame = mw.getCurrentFrame()
-- This is a lambda so that it doesn't need the frame as a parameter
local function add_user_styles(templatestyles)
if templatestyles and templatestyles ~= '' then
return frame:extensionTag{
name = 'templatestyles', args = { src = templatestyles }
}
end
return ''
end
-- get templatestyles. load base from config so that Lua only needs to do
-- the work once of parser tag expansion
local base_templatestyles = cfg.templatestyles
local templatestyles = add_user_styles(args[cfg.arg.templatestyles])
local child_templatestyles = add_user_styles(args[cfg.arg.child_templatestyles])
-- The 'navbox-styles' div exists to wrap the styles to work around T200206
-- more elegantly. Instead of combinatorial rules, this ends up being linear
-- number of CSS rules.
return mw.html.create('div')
:addClass(cfg.class.navbox_styles)
:wikitext(
add_list_styles() .. -- see [hlist_note] applied to 'before base_templatestyles'
base_templatestyles ..
templatestyles ..
child_templatestyles ..
table.concat(hiding_templatestyles)
)
:done()
end
-- work around [[phab:T303378]]
-- for each arg: find all the templatestyles strip markers, insert them into a
-- table. then remove all templatestyles markers from the arg
local function move_hiding_templatestyles(args)
local gfind = string.gfind
local gsub = string.gsub
local templatestyles_markers = {}
local strip_marker_pattern = '(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)'
for k, arg in pairs(args) do
for marker in gfind(arg, strip_marker_pattern) do
table.insert(templatestyles_markers, marker)
end
args[k] = gsub(arg, strip_marker_pattern, '')
end
return templatestyles_markers
end
function p._navbox(navboxArgs)
args = navboxArgs
local hiding_templatestyles = move_hiding_templatestyles(args)
local listnums = {}
for k, _ in pairs(args) do
if type(k) == 'string' then
local listnum = k:match(cfg.pattern.listnum)
if listnum then table.insert(listnums, tonumber(listnum)) end
end
end
table.sort(listnums)
local border = mw.text.trim(args[cfg.arg.border] or args[1] or '')
if border == cfg.keyword.border_child then
border = cfg.keyword.border_subgroup
end
-- render the main body of the navbox
local tbl = renderMainTable(border, listnums)
local res = mw.html.create()
-- render the appropriate wrapper for the navbox, based on the border param
if border == cfg.keyword.border_none then
res:node(add_navbox_styles(hiding_templatestyles))
local nav = res:tag('div')
:attr('role', 'navigation')
:node(tbl)
-- aria-labelledby title, otherwise above, otherwise lone group
if args[cfg.arg.title] or args[cfg.arg.above] or (args[cfg.arg.group1]
and not args[cfg.arg.group2]) then
nav:attr(
'aria-labelledby',
mw.uri.anchorEncode(
args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group1]
)
)
else
nav:attr('aria-label', cfg.aria_label)
end
elseif border == cfg.keyword.border_subgroup then
-- We assume that this navbox is being rendered in a list cell of a
-- parent navbox, and is therefore inside a div with padding:0em 0.25em.
-- We start with a </div> to avoid the padding being applied, and at the
-- end add a <div> to balance out the parent's </div>
res
:wikitext('</div>')
:node(tbl)
:wikitext('<div>')
else
res:node(add_navbox_styles(hiding_templatestyles))
local nav = res:tag('div')
:attr('role', 'navigation')
:addClass(cfg.class.navbox)
:addClass(args[cfg.arg.navboxclass])
:cssText(args[cfg.arg.bodystyle])
:cssText(args[cfg.arg.style])
:css('padding', '3px')
:node(tbl)
-- aria-labelledby title, otherwise above, otherwise lone group
if args[cfg.arg.title] or args[cfg.arg.above]
or (args[cfg.arg.group1] and not args[cfg.arg.group2]) then
nav:attr(
'aria-labelledby',
mw.uri.anchorEncode(args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group1])
)
else
nav:attr('aria-label', cfg.aria_label)
end
end
if (args[cfg.arg.nocat] or cfg.keyword.nocat_false):lower() == cfg.keyword.nocat_false then
renderTrackingCategories(res, border)
end
return striped(tostring(res), border)
end
function p.navbox(frame)
if not getArgs then
getArgs = require('Module:Arguments').getArgs
end
args = getArgs(frame, {wrappers = {cfg.pattern.navbox}})
-- Read the arguments in the order they'll be output in, to make references
-- number in the right order.
local _
_ = args[cfg.arg.title]
_ = args[cfg.arg.above]
-- Limit this to 20 as covering 'most' cases (that's a SWAG) and because
-- iterator approach won't work here
for i = 1, 20 do
_ = args[format(cfg.arg.group_and_num, i)]
_ = args[format(cfg.arg.list_and_num, i)]
end
_ = args[cfg.arg.below]
return p._navbox(args)
end
return p
fa2503f01f91840637f248e4dcbd1763b9cb3561
Module:Navbar
828
4
11
2023-01-14T03:08:06Z
TAPCLAPgamefansince2018
30634029
Created page with "local p = {} local cfg = mw.loadData('Module:Navbar/configuration') local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_..."
Scribunto
text/plain
local p = {}
local cfg = mw.loadData('Module:Navbar/configuration')
local function get_title_arg(is_collapsible, template)
local title_arg = 1
if is_collapsible then title_arg = 2 end
if template then title_arg = 'template' end
return title_arg
end
local function choose_links(template, args)
-- The show table indicates the default displayed items.
-- view, talk, edit, hist, move, watch
-- TODO: Move to configuration.
local show = {true, true, true, false, false, false}
if template then
show[2] = false
show[3] = false
local index = {t = 2, d = 2, e = 3, h = 4, m = 5, w = 6,
talk = 2, edit = 3, hist = 4, move = 5, watch = 6}
-- TODO: Consider removing TableTools dependency.
for _, v in ipairs(require ('Module:TableTools').compressSparseArray(args)) do
local num = index[v]
if num then show[num] = true end
end
end
local remove_edit_link = args.noedit
if remove_edit_link then show[3] = false end
return show
end
local function add_link(link_description, ul, is_mini, font_style)
local l
if link_description.url then
l = {'[', '', ']'}
else
l = {'[[', '|', ']]'}
end
ul:tag('li')
:addClass('nv-' .. link_description.full)
:wikitext(l[1] .. link_description.link .. l[2])
:tag(is_mini and 'abbr' or 'span')
:attr('title', link_description.html_title)
:cssText(font_style)
:wikitext(is_mini and link_description.mini or link_description.full)
:done()
:wikitext(l[3])
:done()
end
local function make_list(title_text, has_brackets, displayed_links, is_mini, font_style)
local title = mw.title.new(mw.text.trim(title_text), cfg.title_namespace)
if not title then
error(cfg.invalid_title .. title_text)
end
local talkpage = title.talkPageTitle and title.talkPageTitle.fullText or ''
-- TODO: Get link_descriptions and show into the configuration module.
-- link_descriptions should be easier...
local link_descriptions = {
{ ['mini'] = 'v', ['full'] = 'view', ['html_title'] = 'View this template',
['link'] = title.fullText, ['url'] = false },
{ ['mini'] = 't', ['full'] = 'talk', ['html_title'] = 'Discuss this template',
['link'] = talkpage, ['url'] = false },
{ ['mini'] = 'e', ['full'] = 'edit', ['html_title'] = 'Edit this template',
['link'] = title:fullUrl('action=edit'), ['url'] = true },
{ ['mini'] = 'h', ['full'] = 'hist', ['html_title'] = 'History of this template',
['link'] = title:fullUrl('action=history'), ['url'] = true },
{ ['mini'] = 'm', ['full'] = 'move', ['html_title'] = 'Move this template',
['link'] = mw.title.new('Special:Movepage'):fullUrl('target='..title.fullText), ['url'] = true },
{ ['mini'] = 'w', ['full'] = 'watch', ['html_title'] = 'Watch this template',
['link'] = title:fullUrl('action=watch'), ['url'] = true }
}
local ul = mw.html.create('ul')
if has_brackets then
ul:addClass(cfg.classes.brackets)
:cssText(font_style)
end
for i, _ in ipairs(displayed_links) do
if displayed_links[i] then add_link(link_descriptions[i], ul, is_mini, font_style) end
end
return ul:done()
end
function p._navbar(args)
-- TODO: We probably don't need both fontstyle and fontcolor...
local font_style = args.fontstyle
local font_color = args.fontcolor
local is_collapsible = args.collapsible
local is_mini = args.mini
local is_plain = args.plain
local collapsible_class = nil
if is_collapsible then
collapsible_class = cfg.classes.collapsible
if not is_plain then is_mini = 1 end
if font_color then
font_style = (font_style or '') .. '; color: ' .. font_color .. ';'
end
end
local navbar_style = args.style
local div = mw.html.create():tag('div')
div
:addClass(cfg.classes.navbar)
:addClass(cfg.classes.plainlinks)
:addClass(cfg.classes.horizontal_list)
:addClass(collapsible_class) -- we made the determination earlier
:cssText(navbar_style)
if is_mini then div:addClass(cfg.classes.mini) end
local box_text = (args.text or cfg.box_text) .. ' '
-- the concatenated space guarantees the box text is separated
if not (is_mini or is_plain) then
div
:tag('span')
:addClass(cfg.classes.box_text)
:cssText(font_style)
:wikitext(box_text)
end
local template = args.template
local displayed_links = choose_links(template, args)
local has_brackets = args.brackets
local title_arg = get_title_arg(is_collapsible, template)
local title_text = args[title_arg] or (':' .. mw.getCurrentFrame():getParent():getTitle())
local list = make_list(title_text, has_brackets, displayed_links, is_mini, font_style)
div:node(list)
if is_collapsible then
local title_text_class
if is_mini then
title_text_class = cfg.classes.collapsible_title_mini
else
title_text_class = cfg.classes.collapsible_title_full
end
div:done()
:tag('div')
:addClass(title_text_class)
:cssText(font_style)
:wikitext(args[1])
end
local frame = mw.getCurrentFrame()
-- hlist -> navbar is best-effort to preserve old Common.css ordering.
return frame:extensionTag{
name = 'templatestyles', args = { src = cfg.hlist_templatestyles }
} .. frame:extensionTag{
name = 'templatestyles', args = { src = cfg.templatestyles }
} .. tostring(div:done())
end
function p.navbar(frame)
return p._navbar(require('Module:Arguments').getArgs(frame))
end
return p
79f907e59eaa8bbf8dd50bb751933ebeaaa7eb17
Module:Navbar/configuration
828
5
12
2023-01-14T03:08:39Z
TAPCLAPgamefansince2018
30634029
Created page with "return { ['templatestyles'] = 'Module:Navbar/styles.css', ['hlist_templatestyles'] = 'Hlist/styles.css', ['box_text'] = 'This box: ', -- default text box when not plain o..."
Scribunto
text/plain
return {
['templatestyles'] = 'Module:Navbar/styles.css',
['hlist_templatestyles'] = 'Hlist/styles.css',
['box_text'] = 'This box: ', -- default text box when not plain or mini
['title_namespace'] = 'Template', -- namespace to default to for title
['invalid_title'] = 'Invalid title ',
['classes'] = { -- set a line to nil if you don't want it
['navbar'] = 'navbar',
['plainlinks'] = 'plainlinks', -- plainlinks
['horizontal_list'] = 'hlist', -- horizontal list class
['mini'] = 'navbar-mini', -- class indicating small links in the navbar
['this_box'] = 'navbar-boxtext',
['brackets'] = 'navbar-brackets',
-- 'collapsible' is the key for a class to indicate the navbar is
-- setting up the collapsible element in addition to the normal
-- navbar.
['collapsible'] = 'navbar-collapse',
['collapsible_title_mini'] = 'navbar-ct-mini',
['collapsible_title_full'] = 'navbar-ct-full'
}
}
b007c336b17ec4bcd4d5a9dca9f8cba301662b55
13
12
2023-01-14T03:08:57Z
TAPCLAPgamefansince2018
30634029
TAPCLAPgamefansince2018 moved page [[Module:Navbar/configuration]] to [[Module:Navbox/configuration]] without leaving a redirect
Scribunto
text/plain
return {
['templatestyles'] = 'Module:Navbar/styles.css',
['hlist_templatestyles'] = 'Hlist/styles.css',
['box_text'] = 'This box: ', -- default text box when not plain or mini
['title_namespace'] = 'Template', -- namespace to default to for title
['invalid_title'] = 'Invalid title ',
['classes'] = { -- set a line to nil if you don't want it
['navbar'] = 'navbar',
['plainlinks'] = 'plainlinks', -- plainlinks
['horizontal_list'] = 'hlist', -- horizontal list class
['mini'] = 'navbar-mini', -- class indicating small links in the navbar
['this_box'] = 'navbar-boxtext',
['brackets'] = 'navbar-brackets',
-- 'collapsible' is the key for a class to indicate the navbar is
-- setting up the collapsible element in addition to the normal
-- navbar.
['collapsible'] = 'navbar-collapse',
['collapsible_title_mini'] = 'navbar-ct-mini',
['collapsible_title_full'] = 'navbar-ct-full'
}
}
b007c336b17ec4bcd4d5a9dca9f8cba301662b55
14
13
2023-01-14T03:09:16Z
TAPCLAPgamefansince2018
30634029
TAPCLAPgamefansince2018 moved page [[Module:Navbox/configuration]] to [[Module:Navbar/configuration]] without leaving a redirect
Scribunto
text/plain
return {
['templatestyles'] = 'Module:Navbar/styles.css',
['hlist_templatestyles'] = 'Hlist/styles.css',
['box_text'] = 'This box: ', -- default text box when not plain or mini
['title_namespace'] = 'Template', -- namespace to default to for title
['invalid_title'] = 'Invalid title ',
['classes'] = { -- set a line to nil if you don't want it
['navbar'] = 'navbar',
['plainlinks'] = 'plainlinks', -- plainlinks
['horizontal_list'] = 'hlist', -- horizontal list class
['mini'] = 'navbar-mini', -- class indicating small links in the navbar
['this_box'] = 'navbar-boxtext',
['brackets'] = 'navbar-brackets',
-- 'collapsible' is the key for a class to indicate the navbar is
-- setting up the collapsible element in addition to the normal
-- navbar.
['collapsible'] = 'navbar-collapse',
['collapsible_title_mini'] = 'navbar-ct-mini',
['collapsible_title_full'] = 'navbar-ct-full'
}
}
b007c336b17ec4bcd4d5a9dca9f8cba301662b55
Module:Navbox/configuration
828
6
15
2023-01-14T03:09:34Z
TAPCLAPgamefansince2018
30634029
Created page with "return { aria_label = 'Navbox', nowrap_item = '%s<span class="nowrap">%s</span>', templatestyles = mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { sr..."
Scribunto
text/plain
return {
aria_label = 'Navbox',
nowrap_item = '%s<span class="nowrap">%s</span>',
templatestyles = mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Module:Navbox/styles.css' }
},
hlist_templatestyles = 'Hlist/styles.css',
plainlist_templatestyles = 'Plainlist/styles.css',
-- do not localize marker table
marker = {
oddeven = '\127_ODDEVEN_\127',
restart = '\127_ODDEVEN0_\127',
regex = '\127_ODDEVEN(%d?)_\127'
},
category = {
orphan = '[[Category:Navbox orphans]]',
horizontal_lists = 'Navigational boxes without horizontal lists',
background_colors = 'Navboxes using background colours',
illegible = 'Potentially illegible navboxes',
borders = 'Navboxes using borders',
},
keyword = {
border_subgroup = 'subgroup',
border_child = 'child',
border_none = 'none',
evenodd_swap = 'swap',
navbar_off = 'off',
navbar_plain = 'plain',
nocat_false = 'false',
nowrapitems_yes = 'yes',
orphan_yes = 'yes',
state_collapsed = 'collapsed',
state_off = 'off',
state_plain = 'plain',
subpage_doc = 'doc',
subpage_sandbox = 'sandbox',
subpage_testcases = 'testcases',
tracking_no = 'no'
},
class = {
autocollapse = 'autocollapse',
collapsible = 'mw-collapsible',
collapsed = 'mw-collapsed',
-- Warning
navbox = 'navbox', -- WMF currently hides 'navbox' from mobile,
-- so you probably shouldn't change the navbox class.
navbox_abovebelow = 'navbox-abovebelow',
navbox_group = 'navbox-group',
navbox_image = 'navbox-image',
navbox_inner = 'navbox-inner',
navbox_list = 'navbox-list',
navbox_list_with_group = 'navbox-list-with-group',
navbox_part = 'navbox-', -- do not l10n
navbox_styles = 'navbox-styles',
navbox_subgroup = 'navbox-subgroup',
navbox_title = 'navbox-title', -- l10n only if you change pattern.navbox_title below
navbox_odd_part = 'odd', -- do not l10n
navbox_even_part = 'even', -- do not l10n
nomobile = 'nomobile',
nowraplinks = 'nowraplinks',
noviewer = 'noviewer' -- used to remove images from MediaViewer
},
pattern = {
listnum = '^list(%d+)$',
class = 'class',
sandbox = '/sandbox$',
navbox = 'Template:Navbox',
nowrap = '^<span class="nowrap">',
style = 'style$',
navbox_title = '<th[^>]*"navbox%-title"',
hlist = 'hlist',
plainlist = 'plainlist',
},
arg = {
above = 'above',
aboveclass = 'aboveclass',
abovestyle = 'abovestyle',
basestyle = 'basestyle',
bodyclass = 'bodyclass',
bodystyle = 'bodystyle',
border = 'border',
below = 'below',
belowclass = 'belowclass',
belowstyle = 'belowstyle',
evenodd = 'evenodd',
evenstyle = 'evenstyle',
group1 = 'group1',
group2 = 'group2',
group_and_num = 'group%d',
groupstyle_and_num = 'group%dstyle',
groupclass = 'groupclass',
groupstyle = 'groupstyle',
groupwidth = 'groupwidth',
innerstyle = 'innerstyle',
image = 'image',
imageclass = 'imageclass',
imageleft = 'imageleft',
imageleftstyle = 'imageleftstyle',
imagesetyle = 'imagestyle',
list_and_num = 'list%d',
listclass_and_num = 'list%dclass',
liststyle_and_num = 'list%dstyle',
list1padding = 'list1padding',
listclass = 'listclass',
listpadding = 'listpadding',
liststyle = 'liststyle',
name = 'name',
navbar = 'navbar',
navboxclass = 'navboxclass',
nocat = 'nocat',
nowrapitems = 'nowrapitems',
oddstyle = 'oddstyle',
orphan = 'orphan',
state = 'state',
style = 'style',
templatestyles = 'templatestyles',
child_templatestyles = 'child templatestyles',
title = 'title',
titleclass = 'titleclass',
titlestyle = 'titlestyle',
tracking = 'tracking'
},
-- names of navbar arguments
navbar = {
name = 1,
fontstyle = 'fontstyle',
mini = 'mini'
}
}
4148736fd32a93636c0413e73ed38afaef065ec9
Module:Arguments
828
8
16
2023-01-14T03:10:22Z
TAPCLAPgamefansince2018
30634029
Created page with "-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke..."
Scribunto
text/plain
-- This module provides easy processing of arguments passed to Scribunto from
-- #invoke. It is intended for use by other Lua modules, and should not be
-- called from #invoke directly.
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local arguments = {}
-- Generate four different tidyVal functions, so that we don't have to check the
-- options every time we call it.
local function tidyValDefault(key, val)
if type(val) == 'string' then
val = val:match('^%s*(.-)%s*$')
if val == '' then
return nil
else
return val
end
else
return val
end
end
local function tidyValTrimOnly(key, val)
if type(val) == 'string' then
return val:match('^%s*(.-)%s*$')
else
return val
end
end
local function tidyValRemoveBlanksOnly(key, val)
if type(val) == 'string' then
if val:find('%S') then
return val
else
return nil
end
else
return val
end
end
local function tidyValNoChange(key, val)
return val
end
local function matchesTitle(given, title)
local tp = type( given )
return (tp == 'string' or tp == 'number') and mw.title.new( given ).prefixedText == title
end
local translate_mt = { __index = function(t, k) return k end }
function arguments.getArgs(frame, options)
checkType('getArgs', 1, frame, 'table', true)
checkType('getArgs', 2, options, 'table', true)
frame = frame or {}
options = options or {}
--[[
-- Set up argument translation.
--]]
options.translate = options.translate or {}
if getmetatable(options.translate) == nil then
setmetatable(options.translate, translate_mt)
end
if options.backtranslate == nil then
options.backtranslate = {}
for k,v in pairs(options.translate) do
options.backtranslate[v] = k
end
end
if options.backtranslate and getmetatable(options.backtranslate) == nil then
setmetatable(options.backtranslate, {
__index = function(t, k)
if options.translate[k] ~= k then
return nil
else
return k
end
end
})
end
--[[
-- Get the argument tables. If we were passed a valid frame object, get the
-- frame arguments (fargs) and the parent frame arguments (pargs), depending
-- on the options set and on the parent frame's availability. If we weren't
-- passed a valid frame object, we are being called from another Lua module
-- or from the debug console, so assume that we were passed a table of args
-- directly, and assign it to a new variable (luaArgs).
--]]
local fargs, pargs, luaArgs
if type(frame.args) == 'table' and type(frame.getParent) == 'function' then
if options.wrappers then
--[[
-- The wrappers option makes Module:Arguments look up arguments in
-- either the frame argument table or the parent argument table, but
-- not both. This means that users can use either the #invoke syntax
-- or a wrapper template without the loss of performance associated
-- with looking arguments up in both the frame and the parent frame.
-- Module:Arguments will look up arguments in the parent frame
-- if it finds the parent frame's title in options.wrapper;
-- otherwise it will look up arguments in the frame object passed
-- to getArgs.
--]]
local parent = frame:getParent()
if not parent then
fargs = frame.args
else
local title = parent:getTitle():gsub('/sandbox$', '')
local found = false
if matchesTitle(options.wrappers, title) then
found = true
elseif type(options.wrappers) == 'table' then
for _,v in pairs(options.wrappers) do
if matchesTitle(v, title) then
found = true
break
end
end
end
-- We test for false specifically here so that nil (the default) acts like true.
if found or options.frameOnly == false then
pargs = parent.args
end
if not found or options.parentOnly == false then
fargs = frame.args
end
end
else
-- options.wrapper isn't set, so check the other options.
if not options.parentOnly then
fargs = frame.args
end
if not options.frameOnly then
local parent = frame:getParent()
pargs = parent and parent.args or nil
end
end
if options.parentFirst then
fargs, pargs = pargs, fargs
end
else
luaArgs = frame
end
-- Set the order of precedence of the argument tables. If the variables are
-- nil, nothing will be added to the table, which is how we avoid clashes
-- between the frame/parent args and the Lua args.
local argTables = {fargs}
argTables[#argTables + 1] = pargs
argTables[#argTables + 1] = luaArgs
--[[
-- Generate the tidyVal function. If it has been specified by the user, we
-- use that; if not, we choose one of four functions depending on the
-- options chosen. This is so that we don't have to call the options table
-- every time the function is called.
--]]
local tidyVal = options.valueFunc
if tidyVal then
if type(tidyVal) ~= 'function' then
error(
"bad value assigned to option 'valueFunc'"
.. '(function expected, got '
.. type(tidyVal)
.. ')',
2
)
end
elseif options.trim ~= false then
if options.removeBlanks ~= false then
tidyVal = tidyValDefault
else
tidyVal = tidyValTrimOnly
end
else
if options.removeBlanks ~= false then
tidyVal = tidyValRemoveBlanksOnly
else
tidyVal = tidyValNoChange
end
end
--[[
-- Set up the args, metaArgs and nilArgs tables. args will be the one
-- accessed from functions, and metaArgs will hold the actual arguments. Nil
-- arguments are memoized in nilArgs, and the metatable connects all of them
-- together.
--]]
local args, metaArgs, nilArgs, metatable = {}, {}, {}, {}
setmetatable(args, metatable)
local function mergeArgs(tables)
--[[
-- Accepts multiple tables as input and merges their keys and values
-- into one table. If a value is already present it is not overwritten;
-- tables listed earlier have precedence. We are also memoizing nil
-- values, which can be overwritten if they are 's' (soft).
--]]
for _, t in ipairs(tables) do
for key, val in pairs(t) do
if metaArgs[key] == nil and nilArgs[key] ~= 'h' then
local tidiedVal = tidyVal(key, val)
if tidiedVal == nil then
nilArgs[key] = 's'
else
metaArgs[key] = tidiedVal
end
end
end
end
end
--[[
-- Define metatable behaviour. Arguments are memoized in the metaArgs table,
-- and are only fetched from the argument tables once. Fetching arguments
-- from the argument tables is the most resource-intensive step in this
-- module, so we try and avoid it where possible. For this reason, nil
-- arguments are also memoized, in the nilArgs table. Also, we keep a record
-- in the metatable of when pairs and ipairs have been called, so we do not
-- run pairs and ipairs on the argument tables more than once. We also do
-- not run ipairs on fargs and pargs if pairs has already been run, as all
-- the arguments will already have been copied over.
--]]
metatable.__index = function (t, key)
--[[
-- Fetches an argument when the args table is indexed. First we check
-- to see if the value is memoized, and if not we try and fetch it from
-- the argument tables. When we check memoization, we need to check
-- metaArgs before nilArgs, as both can be non-nil at the same time.
-- If the argument is not present in metaArgs, we also check whether
-- pairs has been run yet. If pairs has already been run, we return nil.
-- This is because all the arguments will have already been copied into
-- metaArgs by the mergeArgs function, meaning that any other arguments
-- must be nil.
--]]
if type(key) == 'string' then
key = options.translate[key]
end
local val = metaArgs[key]
if val ~= nil then
return val
elseif metatable.donePairs or nilArgs[key] then
return nil
end
for _, argTable in ipairs(argTables) do
local argTableVal = tidyVal(key, argTable[key])
if argTableVal ~= nil then
metaArgs[key] = argTableVal
return argTableVal
end
end
nilArgs[key] = 'h'
return nil
end
metatable.__newindex = function (t, key, val)
-- This function is called when a module tries to add a new value to the
-- args table, or tries to change an existing value.
if type(key) == 'string' then
key = options.translate[key]
end
if options.readOnly then
error(
'could not write to argument table key "'
.. tostring(key)
.. '"; the table is read-only',
2
)
elseif options.noOverwrite and args[key] ~= nil then
error(
'could not write to argument table key "'
.. tostring(key)
.. '"; overwriting existing arguments is not permitted',
2
)
elseif val == nil then
--[[
-- If the argument is to be overwritten with nil, we need to erase
-- the value in metaArgs, so that __index, __pairs and __ipairs do
-- not use a previous existing value, if present; and we also need
-- to memoize the nil in nilArgs, so that the value isn't looked
-- up in the argument tables if it is accessed again.
--]]
metaArgs[key] = nil
nilArgs[key] = 'h'
else
metaArgs[key] = val
end
end
local function translatenext(invariant)
local k, v = next(invariant.t, invariant.k)
invariant.k = k
if k == nil then
return nil
elseif type(k) ~= 'string' or not options.backtranslate then
return k, v
else
local backtranslate = options.backtranslate[k]
if backtranslate == nil then
-- Skip this one. This is a tail call, so this won't cause stack overflow
return translatenext(invariant)
else
return backtranslate, v
end
end
end
metatable.__pairs = function ()
-- Called when pairs is run on the args table.
if not metatable.donePairs then
mergeArgs(argTables)
metatable.donePairs = true
end
return translatenext, { t = metaArgs }
end
local function inext(t, i)
-- This uses our __index metamethod
local v = t[i + 1]
if v ~= nil then
return i + 1, v
end
end
metatable.__ipairs = function (t)
-- Called when ipairs is run on the args table.
return inext, t, 0
end
return args
end
return arguments
3134ecce8429b810d445e29eae115e2ae4c36c53
Template:Hlist/styles.css
10
9
17
2023-01-14T03:11:16Z
TAPCLAPgamefansince2018
30634029
Created page with "/* {{pp-protected|reason=match parent|small=yes}} */ /* * hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) ar..."
sanitized-css
text/css
/* {{pp-protected|reason=match parent|small=yes}} */
/*
* hlist styles are defined in core and Minerva and differ in Minerva. The
* current definitions here (2023-01-01) are sufficient to override Minerva
* without use of the hlist-separated class. The most problematic styles were
* related to margin, padding, and the bullet. Check files listed at
* [[MediaWiki talk:Common.css/to do#hlist-separated]]
*/
/*
* TODO: When the majority of readership supports it (or some beautiful world
* in which grade C support is above the minimum threshold), use :is()
*/
.hlist dl,
.hlist ol,
.hlist ul {
margin: 0;
padding: 0;
}
/* Display list items inline */
.hlist dd,
.hlist dt,
.hlist li {
/*
* don't trust the note that says margin doesn't work with inline
* removing margin: 0 makes dds have margins again
* We also want to reset margin-right in Minerva
*/
margin: 0;
display: inline;
}
/* Display requested top-level lists inline */
.hlist.inline,
.hlist.inline dl,
.hlist.inline ol,
.hlist.inline ul,
/* Display nested lists inline */
.hlist dl dl,
.hlist dl ol,
.hlist dl ul,
.hlist ol dl,
.hlist ol ol,
.hlist ol ul,
.hlist ul dl,
.hlist ul ol,
.hlist ul ul {
display: inline;
}
/* Hide empty list items */
.hlist .mw-empty-li {
display: none;
}
/* TODO: :not() can maybe be used here to remove the later rule. naive test
* seems to work. more testing needed. like so:
*.hlist dt:not(:last-child)::after {
* content: ": ";
*}
*.hlist dd:not(:last-child)::after,
*.hlist li:not(:last-child)::after {
* content: " Β· ";
* font-weight: bold;
*}
*/
/* Generate interpuncts */
.hlist dt::after {
content: ": ";
}
.hlist dd::after,
.hlist li::after {
content: " Β· ";
font-weight: bold;
}
.hlist dd:last-child::after,
.hlist dt:last-child::after,
.hlist li:last-child::after {
content: none;
}
/* Add parentheses around nested lists */
.hlist dd dd:first-child::before,
.hlist dd dt:first-child::before,
.hlist dd li:first-child::before,
.hlist dt dd:first-child::before,
.hlist dt dt:first-child::before,
.hlist dt li:first-child::before,
.hlist li dd:first-child::before,
.hlist li dt:first-child::before,
.hlist li li:first-child::before {
content: " (";
font-weight: normal;
}
.hlist dd dd:last-child::after,
.hlist dd dt:last-child::after,
.hlist dd li:last-child::after,
.hlist dt dd:last-child::after,
.hlist dt dt:last-child::after,
.hlist dt li:last-child::after,
.hlist li dd:last-child::after,
.hlist li dt:last-child::after,
.hlist li li:last-child::after {
content: ")";
font-weight: normal;
}
/* Put ordinals in front of ordered list items */
.hlist ol {
counter-reset: listitem;
}
.hlist ol > li {
counter-increment: listitem;
}
.hlist ol > li::before {
content: " " counter(listitem) "\a0";
}
.hlist dd ol > li:first-child::before,
.hlist dt ol > li:first-child::before,
.hlist li ol > li:first-child::before {
content: " (" counter(listitem) "\a0";
}
8c9dd9c9c00f30eead17fe10f51d183333e81f33
Module:Navbox/styles.css
828
10
18
2023-01-14T03:11:57Z
TAPCLAPgamefansince2018
30634029
Created page with "/* {{pp|small=y}} */ .navbox { box-sizing: border-box; border: 1px solid #a2a9b1; width: 100%; clear: both; font-size: 88%; text-align: center; padding: 1px; margin: 1..."
sanitized-css
text/css
/* {{pp|small=y}} */
.navbox {
box-sizing: border-box;
border: 1px solid #a2a9b1;
width: 100%;
clear: both;
font-size: 88%;
text-align: center;
padding: 1px;
margin: 1em auto 0; /* Prevent preceding content from clinging to navboxes */
}
.navbox .navbox {
margin-top: 0; /* No top margin for nested navboxes */
}
.navbox + .navbox, /* TODO: remove first line after transclusions have updated */
.navbox + .navbox-styles + .navbox {
margin-top: -1px; /* Single pixel border between adjacent navboxes */
}
.navbox-inner,
.navbox-subgroup {
width: 100%;
}
.navbox-group,
.navbox-title,
.navbox-abovebelow {
padding: 0.25em 1em;
line-height: 1.5em;
text-align: center;
}
.navbox-group {
white-space: nowrap;
/* @noflip */
text-align: right;
}
.navbox,
.navbox-subgroup {
background-color: #fdfdfd;
}
.navbox-list {
line-height: 1.5em;
border-color: #fdfdfd; /* Must match background color */
}
.navbox-list-with-group {
text-align: left;
border-left-width: 2px;
border-left-style: solid;
}
/* cell spacing for navbox cells */
/* Borders above 2nd, 3rd, etc. rows */
/* TODO: figure out how to replace tr as structure;
* with div structure it should be just a matter of first-child */
tr + tr > .navbox-abovebelow,
tr + tr > .navbox-group,
tr + tr > .navbox-image,
tr + tr > .navbox-list {
border-top: 2px solid #fdfdfd; /* Must match background color */
}
.navbox-title {
background-color: #ccf; /* Level 1 color */
}
.navbox-abovebelow,
.navbox-group,
.navbox-subgroup .navbox-title {
background-color: #ddf; /* Level 2 color */
}
.navbox-subgroup .navbox-group,
.navbox-subgroup .navbox-abovebelow {
background-color: #e6e6ff; /* Level 3 color */
}
.navbox-even {
background-color: #f7f7f7;
}
.navbox-odd {
background-color: transparent;
}
/* TODO: figure out how to remove reliance on td as structure */
.navbox .hlist td dl,
.navbox .hlist td ol,
.navbox .hlist td ul,
.navbox td.hlist dl,
.navbox td.hlist ol,
.navbox td.hlist ul {
padding: 0.125em 0;
}
.navbox .navbar {
display: block;
font-size: 100%;
}
.navbox-title .navbar {
/* @noflip */
float: left;
/* @noflip */
text-align: left;
/* @noflip */
margin-right: 0.5em;
}
e80b0d7a5770e6e105dab832deb6c37a5245ebc6
Module:Navbar/styles.css
828
11
19
2023-01-14T03:12:24Z
TAPCLAPgamefansince2018
30634029
Created page with "/* {{pp|small=yes}} */ .navbar { display: inline; font-size: 88%; font-weight: normal; } .navbar-collapse { float: left; text-align: left; } .navbar-boxtext { word-spa..."
sanitized-css
text/css
/* {{pp|small=yes}} */
.navbar {
display: inline;
font-size: 88%;
font-weight: normal;
}
.navbar-collapse {
float: left;
text-align: left;
}
.navbar-boxtext {
word-spacing: 0;
}
.navbar ul {
display: inline-block;
white-space: nowrap;
line-height: inherit;
}
.navbar-brackets::before {
margin-right: -0.125em;
content: '[ ';
}
.navbar-brackets::after {
margin-left: -0.125em;
content: ' ]';
}
.navbar li {
word-spacing: -0.125em;
}
.navbar a > span,
.navbar a > abbr {
text-decoration: inherit;
}
.navbar-mini abbr {
font-variant: small-caps;
border-bottom: none;
text-decoration: none;
cursor: inherit;
}
.navbar-ct-full {
font-size: 114%;
margin: 0 7em;
}
.navbar-ct-mini {
font-size: 114%;
margin: 0 4em;
}
9d4056f949b4f0b159e3d40dfb1a5f01e72f9571
User:TAPCLAPgamefansince2018/sandbox
2
12
20
2023-01-14T03:13:54Z
TAPCLAPgamefansince2018
30634029
Created page with "{{Navbox | name = Fandom wikis and communities | title = [[en:Fandom (website)|Fandom]] wikis and communities | bodyclass = hlist | border = {{{1|}}} | state = {{{state|<noinc..."
wikitext
text/x-wiki
{{Navbox
| name = Fandom wikis and communities
| title = [[en:Fandom (website)|Fandom]] wikis and communities
| bodyclass = hlist
| border = {{{1|}}}
| state = {{{state|<noinclude>expanded</noinclude>autocollapse}}}
| group1 = TV
| list1 =
* <span class="plainlinks">[https://thecw.fandom.com The CW]</span>
* <span class="plainlinks">[https://walkingdead.fandom.com Walking Dead]</span>
* <span class="plainlinks">[https://www.tardis.fandom.com Tardis]</span>
* <span class="plainlinks">[https://memory-alpha.fandom.com Memory Alpha]</span>
* <span class="plainlinks">[https://riverdale.fandom.com Archieverse]</span>
* <span class="plainlinks">[https://arrow.fandom.com Arrowverse]</span>
* <span class="plainlinks">[https://gameofthrones.fandom.com Game of Thrones]</span>
* <span class="plainlinks">[https://strangerthings.fandom.com Stranger Things]</span>
* <span class="plainlinks">[https://rickandmorty.fandom.com Rick and Morty]</span>
* <span class="plainlinks">[https://television.fandom.com Television]</span>
* <span class="plainlinks">[https://13reasonswhy.fandom.com 13 Reasons Why]</span>
* <span class="plainlinks">[https://24.fandom.com Wiki 24]</span>
* <span class="plainlinks">[https://amillionlittlethings.fandom.com A Million Little Things]</span>
* <span class="plainlinks">[https://abc.fandom.com ABC]</span>
* <span class="plainlinks">[https://adventuretime.fandom.com Adventure Time]</span>
* <span class="plainlinks">[https://agents-of-mayhem.fandom.com Agents of Mayhem]</span>
* <span class="plainlinks">[https://ajin.fandom.com Ajin]</span>
* <span class="plainlinks">[https://altered-carbon.fandom.com Altered Carbon]</span>
* <span class="plainlinks">[https://americangods.fandom.com American Gods]</span>
* <span class="plainlinks">[https://americanhorrorstory.fandom.com American Horror Story]</span>
* <span class="plainlinks">[https://americanhousewife.fandom.com American Housewife]</span>
* <span class="plainlinks">[https://americanidol.fandom.com American Idol]</span>
* <span class="plainlinks">[https://amphibia.fandom.com Amphibia]</span>
* <span class="plainlinks">[https://archer.fandom.com Archer]</span>
* <span class="plainlinks">[https://avatar.fandom.com Avatar]</span>
* <span class="plainlinks">[https://bachelor-nation.fandom.com Bachelor Nation]</span>
* <span class="plainlinks">[https://bakerstreet.fandom.com Baker Street]</span>
* <span class="plainlinks">[https://battlefordreamisland.fandom.com Battle for Dream Island]</span>
* <span class="plainlinks">[https://beavisandbutthead.fandom.com Beavis and Butt-Head]</span>
* <span class="plainlinks">[https://ben10.fandom.com Ben 10]</span>
* <span class="plainlinks">[https://bigbangtheory.fandom.com The Big Bang Theory]</span>
* <span class="plainlinks">[https://black-mirror.fandom.com Black Mirror]</span>
* <span class="plainlinks">[https://blackish.fandom.com Black-ish]</span>
* <span class="plainlinks">[https://bojackhorseman.fandom.com BoJack Horseman]</span>
* <span class="plainlinks">[https://breakingbad.fandom.com Breaking Bad]</span>
* <span class="plainlinks">[https://buffy.fandom.com Buffyverse]</span>
* <span class="plainlinks">[https://charmed.fandom.com Charmed]</span> π° <span class="plainlinks">[https://charmed-reboot.fandom.com/wiki Charmed (2018)]</span>
* <span class="plainlinks">[https://thekaratekid.fandom.com The Karate Kid]</span>
* <span class="plainlinks">[https://criminalminds.fandom.com Criminal Minds]</span>
* <span class="plainlinks">[https://criticalrole.fandom.com Critical Role]</span>
* <span class="plainlinks">[https://dancemoms.fandom.com Dance Moms]</span>
* <span class="plainlinks">[https://dancingwiththestars.fandom.com Dancing with the Stars]</span>
* <span class="plainlinks">[https://dark-netflix.fandom.com Dark]</span>
* <span class="plainlinks">[https://darkcrystal.fandom.com The Dark Crystal]</span>
* <span class="plainlinks">[https://dawsonscreek.fandom.com Dawson's Creek]</span>
* <span class="plainlinks">[https://degrassi.fandom.com Degrassi]</span>
* <span class="plainlinks">[https://dora.fandom.com Dora the Explorer]</span>
* <span class="plainlinks">[https://downtonabbey.fandom.com Downton Abbey]</span>
* <span class="plainlinks">[https://rupaulsdragrace.fandom.com RuPaul's Drag Race]</span>
* <span class="plainlinks">[https://ducktales.fandom.com DuckTales]</span>
* <span class="plainlinks">[https://eastenders.fandom.com EastEnders]</span>
* <span class="plainlinks">[https://elite-netflix.fandom.com Elite]</span>
* <span class="plainlinks">[https://everythings-gonna-be-okay.fandom.com Everything's Gonna Be Okay]</span>
* <span class="plainlinks">[https://fatethewinxsaga.fandom.com Fate: The Winx Saga]</span>
* <span class="plainlinks">[https://friends.fandom.com Friends]</span>
* <span class="plainlinks">[https://fullhouse.fandom.com Full House]</span>
* <span class="plainlinks">[https://gilmoregirls.fandom.com Gilmore Girls]</span>
* <span class="plainlinks">[https://glee.fandom.com Glee]</span>
* <span class="plainlinks">[https://glitchtale.fandom.com Glitchtale]</span>
* <span class="plainlinks">[https://goodomens.fandom.com Good Omens]</span>
* <span class="plainlinks">[https://goodtrouble.fandom.com Good Trouble]</span>
* <span class="plainlinks">[https://gravityfalls.fandom.com Gravity Falls]</span>
* <span class="plainlinks">[https://greysanatomy.fandom.com Grey's Anatomy]</span>
* <span class="plainlinks">[https://grimm.fandom.com Grimm]</span>
* <span class="plainlinks">[https://hannibal.fandom.com Hannibal]</span>
* <span class="plainlinks">[https://hawaiifiveo.fandom.com Hawaii Five-0]</span>
* <span class="plainlinks">[https://hellskitchen.fandom.com Hell's Kitchen]</span>
* <span class="plainlinks">[https://heroes.fandom.com Heroes]</span>
* <span class="plainlinks">[https://houseofcards.fandom.com House of Cards]</span>
* <span class="plainlinks">[https://iamnotokaywiththis.fandom.com I Am Not Okay with This]</span>
* <span class="plainlinks">[https://killingeve.fandom.com Killing Eve]</span>
* <span class="plainlinks">[https://kingdom-netflix.fandom.com Kingdom]</span>
* <span class="plainlinks">[https://kipo.fandom.com Kipo and the Age of Wonderbeasts]</span>
* <span class="plainlinks">[https://lockekey.fandom.com Locke & Key]</span>
* <span class="plainlinks">[https://lostpedia.fandom.com Lostpedia]</span>
* <span class="plainlinks">[https://lucifer.fandom.com Lucifer]</span>
* <span class="plainlinks">[https://madmen.fandom.com Mad Men]</span>
* <span class="plainlinks">[https://mash.fandom.com M*A*S*H]</span>
* <span class="plainlinks">[https://milomurphyslaw.fandom.com Milo Murphy's Law]</span>
* <span class="plainlinks">[https://mindhunter.fandom.com Mindhunter]</span>
* <span class="plainlinks">[https://miraculousladybug.fandom.com Miraculous Ladybug]</span>
* <span class="plainlinks">[https://modernfamily.fandom.com Modern Family]</span>
* <span class="plainlinks">[https://motherland.fandom.com Motherland: Fort Salem]</span>
* <span class="plainlinks">[https://mlp.fandom.com My Little Pony: Friendship Is Magic]</span>
* <span class="plainlinks">[https://nancydrew.fandom.com Nancy Drew]</span>
* <span class="plainlinks">[https://nos4a2.fandom.com NOS4A2]</span>
* <span class="plainlinks">[https://onceuponatime.fandom.com Once Upon a Time]</span>
* <span class="plainlinks">[https://orange-is-the-new-black.fandom.com Orange Is the New Black]</span>
* <span class="plainlinks">[https://orphanblack.fandom.com Orphan Black]</span>
* <span class="plainlinks">[https://outlander.fandom.com Outlander]</span>
* <span class="plainlinks">[https://parksandrecreation.fandom.com Parks and Recreation]</span>
* <span class="plainlinks">[https://phineasandferb.fandom.com Phineas and Ferb]</span>
* <span class="plainlinks">[https://starzpower.fandom.com Power]</span>
* <span class="plainlinks">[https://powerrangers.fandom.com RangerWiki]</span>
* <span class="plainlinks">[https://preacher.fandom.com Preacher]</span>
* <span class="plainlinks">[https://prettylittleliars.fandom.com Pretty Little Liars]</span>
* <span class="plainlinks">[https://psychusa.fandom.com Psych]</span>
* <span class="plainlinks">[https://regularshow.fandom.com Regular Show]</span>
* <span class="plainlinks">[https://roswell.fandom.com Roswell]</span>
* <span class="plainlinks">[https://sasukepedia.fandom.com Sasuke Ninja Warrior]</span>
* <span class="plainlinks">[https://scandal.fandom.com Scandal]</span>
* <span class="plainlinks">[https://scoobydoo.fandom.com Scoobypedia]</span>
* <span class="plainlinks">[https://scream-queens.fandom.com Scream Queens Wiki]</span>
* <span class="plainlinks">[https://sexeducation.fandom.com Sex Education]</span>
* <span class="plainlinks">[https://she-raandtheprincessesofpower.fandom.com She-Ra and the Princesses of Power]</span>
* <span class="plainlinks">[https://simpsons.fandom.com The Simpsons]</span>
* <span class="plainlinks">[https://siren.fandom.com Siren]</span>
* <span class="plainlinks">[https://snowpiercer.fandom.com Snowpiercer]</span>
* <span class="plainlinks">[https://southpark.fandom.com South Park Archives]</span>
* <span class="plainlinks">[https://spartacus.fandom.com Spartacus]</span>
* <span class="plainlinks">[https://spongebob.fandom.com Encyclopedia SpongeBobia]</span>
* <span class="plainlinks">[https://starwarsresistance.fandom.com Star Wars Resistance]</span>
* <span class="plainlinks">[https://stargate.fandom.com SGCommand]</span>
* <span class="plainlinks">[https://stargirl.fandom.com Stargirl]</span>
* <span class="plainlinks">[https://steven-universe.fandom.com Steven Universe]</span>
* <span class="plainlinks">[https://stumptown.fandom.com Stumptown]</span>
* <span class="plainlinks">[https://supernatural.fandom.com Supernatural]</span>
* <span class="plainlinks">[https://survivor.fandom.com Survivor]</span>
* <span class="plainlinks">[https://ted-lasso.fandom.com Ted Lasso]</span>
* <span class="plainlinks">[https://the100.fandom.com The 100]</span>
* <span class="plainlinks">[https://theamazingworldofgumball.fandom.com The Amazing World of Gumball]</span>
* <span class="plainlinks">[https://theboldtype.fandom.com The Bold Type]</span>
* <span class="plainlinks">[https://the-boys.fandom.com The Boys]</span>
* <span class="plainlinks">[https://thechallenge.fandom.com The Challenge]</span>
* <span class="plainlinks">[https://dragonprince.fandom.com The Dragon Prince]</span>
* <span class="plainlinks">[https://expanse.fandom.com The Expanse]</span>
* <span class="plainlinks">[https://thegoldbergs.fandom.com The Goldbergs π° Schooled]</span>
* <span class="plainlinks">[https://the-good-doctor.fandom.com The Good Doctor]</span>
* <span class="plainlinks">[https://thegoodplace.fandom.com The Good Place]</span>
* <span class="plainlinks">[https://theloudhouse.fandom.com The Loud House Encyclopedia]</span>
* <span class="plainlinks">[https://the-man-in-the-high-castle.fandom.com The Man in the High Castle]</span>
* <span class="plainlinks">[https://muppet.fandom.com The Muppets]</span>
* <span class="plainlinks">[https://theoffice.fandom.com The Office]</span>
* <span class="plainlinks">[https://orville.fandom.com The Orville]</span>
* <span class="plainlinks">[https://yakusokunoneverland.fandom.com The Promised Neverland]</span>
* <span class="plainlinks">[https://the-rookie.fandom.com The Rookie]</span>
* <span class="plainlinks">[https://vampirediaries.fandom.com The Vampire Diaries]</span>
* <span class="plainlinks">[https://westwing.fandom.com The West Wing]</span>
* <span class="plainlinks">[https://ttte.fandom.com Thomas & Friends]</span>
* <span class="plainlinks">[https://transformers.fandom.com Transformers]</span>
* <span class="plainlinks">[https://kimmyschmidt.fandom.com Unbreakable Kimmy Schmidt]</span>
* <span class="plainlinks">[https://vikings.fandom.com Vikings]</span>
* <span class="plainlinks">[https://www.voltron.fandom.com Voltron]</span>
* <span class="plainlinks">[https://westworld.fandom.com Westworld]</span>
* <span class="plainlinks">[https://winx.fandom.com Winx Club]</span>
* <span class="plainlinks">[https://youngjustice.fandom.com Young Justice]</span>
* <span class="plainlinks">[https://youtube.fandom.com Wikitubia]</span>
| group2 = Games
| list2 =
* <span class="plainlinks">[https://playstation.fandom.com PlayStation]</span>
* <span class="plainlinks">[https://xbox.fandom.com Xbox]</span>
* <span class="plainlinks">[https://elderscrolls.fandom.com Elder Scrolls]</span>
* <span class="plainlinks">[https://callofduty.fandom.com Call of Duty]</span>
* <span class="plainlinks">[https://pokemon.fandom.com PokΓ©mon]</span>
* <span class="plainlinks">[https://overwatch.fandom.com Overwatch]</span>
* <span class="plainlinks">[https://zelda.fandom.com The Legend of Zelda]</span>
* <span class="plainlinks">[https://fortnite.fandom.com Fortnite]</span>
* <span class="plainlinks">[https://apexlegends.fandom.com Apex Legends]</span>
* <span class="plainlinks">[https://reddead.fandom.com Red Dead]</span>
* <span class="plainlinks">[https://blizzard.fandom.com Blizzard Entertainment]</span>
* <span class="plainlinks">[https://mario.fandom.com Super Mario]</span>
* <span class="plainlinks">[https://fallout.fandom.com Fallout]</span>
* <span class="plainlinks">[https://acecombat.fandom.com Acepedia]</span>
* <span class="plainlinks">[https://ageofempires.fandom.com Age of Empires]</span>
* <span class="plainlinks">[https://among-us.fandom.com Among Us]</span>
* <span class="plainlinks">[https://angrybirds.fandom.com Angry Birds]</span>
* <span class="plainlinks">[https://animalcrossing.fandom.com Animal Crossing]</span>
* <span class="plainlinks">[https://anno1800.fandom.com Anno 1800]</span>
* <span class="plainlinks">[https://archero.fandom.com Archero]</span>
* <span class="plainlinks">[https://assassinscreed.fandom.com Assassin's Creed]</span>
* <span class="plainlinks">[https://avengersalliance.fandom.com Marvel Avengers Alliance]</span>
* <span class="plainlinks">[https://baldursgate.fandom.com Baldur's Gate]</span>
* <span class="plainlinks">[https://battleborn.fandom.com Battleborn]</span>
* <span class="plainlinks">[https://battlefield.fandom.com Battlefield]</span>
* <span class="plainlinks">[https://battlefront.fandom.com Star Wars: Battlefront]</span>
* <span class="plainlinks">[https://bioshock.fandom.com BioShock]</span>
* Blood Brothers
* <span class="plainlinks">[https://bloodborne.fandom.com Bloodborne]</span>
* <span class="plainlinks">[https://boombeach.fandom.com Boom Beach]</span>
* <span class="plainlinks">[https://borderlands.fandom.com Borderlands]</span>
* <span class="plainlinks">[https://bravefrontierglobal.fandom.com Brave Frontier]</span>
* <span class="plainlinks">[https://brawlstars.fandom.com Brawl Stars]</span>
* <span class="plainlinks">[https://candycrush.fandom.com Candy Crush Saga]</span>
* <span class="plainlinks">[https://castlevania.fandom.com Castlevania]</span>
* <span class="plainlinks">[https://choices-stories-you-play.fandom.com Choices: Stories You Play]</span>
* <span class="plainlinks">[https://civilization.fandom.com Civilization]</span>
* <span class="plainlinks">[https://clashofclans.fandom.com Clash of Clans]</span>
* <span class="plainlinks">[https://clashroyale.fandom.com Clash Royale]</span>
* <span class="plainlinks">[https://clubpenguin.fandom.com Club Penguin]</span>
* <span class="plainlinks">[https://cnc.fandom.com Command & Conquer]</span>
* <span class="plainlinks">[https://www.crashbandicoot.fandom.com Bandipedia]</span>
* <span class="plainlinks">[https://cyberpunk.fandom.com Cyberpunk]</span>
* <span class="plainlinks">[https://danganronpa.fandom.com Danganronpa]</span>
* <span class="plainlinks">[https://darksouls.fandom.com Dark Souls]</span>
* <span class="plainlinks">[https://dow.fandom.com Dawn of War]</span>
* <span class="plainlinks">[https://deadbydaylight.fandom.com Dead by Daylight]</span>
* <span class="plainlinks">[https://deathstranding.fandom.com Death Stranding]</span>
* <span class="plainlinks">[https://destiny.fandom.com Destiny]</span>
* <span class="plainlinks">[https://devilmaycry.fandom.com Devil May Cry]</span>
* <span class="plainlinks">[https://dishonored.fandom.com Dishonored]</span>
* <span class="plainlinks">[https://divinity.fandom.com Divinity]</span>
* <span class="plainlinks">[https://dontstarve.fandom.com Don't Starve]</span>
* <span class="plainlinks">[https://doom.fandom.com Doom]</span>
* <span class="plainlinks">[https://dragonage.fandom.com Dragon Age]</span>
* <span class="plainlinks">[https://dragonquest.fandom.com Dragon Quest]</span>
* <span class="plainlinks">[https://dragon-story.fandom.com Dragon Story]</span>
* <span class="plainlinks">[https://dragonsdogma.fandom.com Dragon's Dogma]</span>
* <span class="plainlinks">[https://dragonvale.fandom.com DragonVale]</span>
* <span class="plainlinks">[https://dyinglight.fandom.com Dying Light]</span>
* <span class="plainlinks">[https://elite-dangerous.fandom.com Elite Dangerous]</span>
* <span class="plainlinks">[https://evolve.fandom.com Evolve]</span>
* <span class="plainlinks">[https://farcry.fandom.com Far Cry]</span>
* <span class="plainlinks">[https://fategrandorder.fandom.com Fate/Grand Order]</span>
* <span class="plainlinks">[https://fifa.fandom.com FIFA]</span>
* <span class="plainlinks">[https://finalfantasy.fandom.com Final Fantasy]</span>
* <span class="plainlinks">[https://fireemblem.fandom.com Fire Emblem]</span>
* Five Nights at Freddy's
* Five Nights at Treasure Island
* <span class="plainlinks">[https://forhonor.fandom.com For Honor]</span>
* <span class="plainlinks">[https://forgeofempires.fandom.com Forge of Empires]</span>
* <span class="plainlinks">[https://forgottenrealms.fandom.com Forgotten Realms]</span>
* <span class="plainlinks">[https://forza.fandom.com Forza]</span>
* <span class="plainlinks">[https://gearsofwar.fandom.com Gears of War]</span>
* <span class="plainlinks">[https://genshin-impact.fandom.com Genshin Impact]</span>
* <span class="plainlinks">[https://ghostrecon.fandom.com Ghost Recon]</span>
* <span class="plainlinks">[https://godofwar.fandom.com God of War]</span>
* <span class="plainlinks">[https://gran-turismo.fandom.com Gran Turismo]</span>
* <span class="plainlinks">[https://growtopia.fandom.com Growtopia]</span>
* <span class="plainlinks">[https://gta.fandom.com Grand Theft Auto]</span>
* <span class="plainlinks">[https://gwent.fandom.com Gwent: The Witcher Card Game]</span>
* <span class="plainlinks">[https://half-life.fandom.com Half-Life]</span>
* <span class="plainlinks">[https://halo.fandom.com Halo Alpha]</span>
* <span class="plainlinks">[https://harvestmoon.fandom.com Harvest Moon]</span>
* <span class="plainlinks">[https://hayday.fandom.com Hay Day]</span>
* <span class="plainlinks">[https://hearthstone.fandom.com Hearthstone]</span>
* <span class="plainlinks">[https://heroesofthestorm.fandom.com Heroes of the Storm]</span>
* <span class="plainlinks">[https://hitman.fandom.com Hitman]</span>
* <span class="plainlinks">[https://hollowknight.fandom.com Hollow Knight]</span>
* <span class="plainlinks">[https://horizon.fandom.com Horizon Zero Dawn]</span>
* <span class="plainlinks">[https://injustice.fandom.com Injustice: Gods Among Us]</span>
* <span class="plainlinks">[https://jailbreak.fandom.com Jailbreak]</span>
* <span class="plainlinks">[https://jurassicworld-evolution.fandom.com Jurassic World Evolution]</span>
* <span class="plainlinks">[https://justcause.fandom.com Just Cause]</span>
* <span class="plainlinks">[https://justdance.fandom.com Just Dance]</span>
* <span class="plainlinks">[https://kancolle.fandom.com KanColle]</span>
* <span class="plainlinks">[https://kenshi.fandom.com Kenshi]</span>
* <span class="plainlinks">[https://kingdomhearts.fandom.com Kingdom Hearts]</span>
* <span class="plainlinks">[https://kirby.fandom.com Kirby]</span>
* <span class="plainlinks">[https://www.knights-and-dragons.fandom.com Knights and Dragons]</span>
* <span class="plainlinks">[https://last-day-on-earth-survival.fandom.com Last Day on Earth: Survival]</span>
* <span class="plainlinks">[https://life-is-strange.fandom.com Life Is Strange]</span>
* <span class="plainlinks">[https://leagueoflegends.fandom.com League of Legends]</span>
* <span class="plainlinks">[https://lotrminecraftmod.fandom.com The Lord of the Rings Minecraft mod]</span>
* <span class="plainlinks">[https://lumber-tycoon-2.fandom.com Lumber Tycoon 2]</span>
* <span class="plainlinks">[https://mafiagame.fandom.com Mafia]</span>
* <span class="plainlinks">[https://mario.fandom.com MarioWiki]</span>
* <span class="plainlinks">[https://marvels-spider-man.fandom.com Marvel's Spider-Man]</span>
* <span class="plainlinks">[https://masseffect.fandom.com Mass Effect]</span>
* <span class="plainlinks">[https://megaman.fandom.com MMKB]</span>
* <span class="plainlinks">[https://metalgear.fandom.com Metal Gear]</span>
* <span class="plainlinks">[https://metro.fandom.com Metro]</span>
* <span class="plainlinks">[https://mightandmagic.fandom.com Might and Magic]</span>
* <span class="plainlinks">[https://minecraft.fandom.com Minecraft]</span>
* <span class="plainlinks">[https://minecraftstorymode.fandom.com Minecraft: Story Mode]</span>
* <span class="plainlinks">[https://mirrorsedge.fandom.com Mirror's Edge]</span>
* <span class="plainlinks">[https://monsterhunter.fandom.com Monster Hunter]</span>
* <span class="plainlinks">[https://monsterlegends.fandom.com Monster Legends]</span>
* <span class="plainlinks">[https://mortalkombat.fandom.com Mortal Kombat]</span>
* <span class="plainlinks">[https://mountandblade.fandom.com Mount & Blade]</span>
* <span class="plainlinks">[https://mugen.fandom.com MUGEN Database]</span>
* <span class="plainlinks">[https://mysingingmonsters.fandom.com My Singing Monsters]</span>
* <span class="plainlinks">[https://nintendo.fandom.com Nintendo]</span>
* <span class="plainlinks">[https://nomanssky.fandom.com No Man's Sky]</span>
* <span class="plainlinks">[https://octopathtraveler.fandom.com Octopath Traveler]</span>
* <span class="plainlinks">[https://oldschoolrunescape.fandom.com Old School RuneScape]</span>
* <span class="plainlinks">[https://oriandtheblindforest.fandom.com Ori and the Blind Forest]</span>
* <span class="plainlinks">[https://outlast.fandom.com Outlast]</span>
* <span class="plainlinks">[https://payday.fandom.com Payday]</span>
* <span class="plainlinks">[https://pixelgun.fandom.com Pixel Gun]</span>
* <span class="plainlinks">[https://pixelworlds.fandom.com Pixel Worlds]</span>
* <span class="plainlinks">[https://plantsvszombies.fandom.com Plants vs. Zombies]</span>
* <span class="plainlinks">[https://www.pubg.fandom.com PlayerUnknown's Battlegrounds]</span>
* <span class="plainlinks">[https://pad.fandom.com Puzzle & Dragons]</span>
* <span class="plainlinks">[https://rage.fandom.com Rage]</span>
* <span class="plainlinks">[https://rainbowsix.fandom.com Tom Clancy's Rainbow Six]</span>
* <span class="plainlinks">[https://rr3.fandom.com Real Racing 3]</span>
* <span class="plainlinks">[https://rec-room.fandom.com Rec Room]</span>
* <span class="plainlinks">[https://residentevil.fandom.com Resident Evil]</span>
* <span class="plainlinks">[https://romance-club.fandom.com Romance Club - Stories I Play]</span>
* <span class="plainlinks">[https://roosterteeth.fandom.com Rooster Teeth]</span>
* <span class="plainlinks">[https://runescape.fandom.com RuneScape]</span>
* <span class="plainlinks">[https://snk.fandom.com SNK]</span>
* <span class="plainlinks">[https://saintsrow.fandom.com Saints Row]</span>
* <span class="plainlinks">[https://seaofthieves.fandom.com Sea of Thieves]</span>
* <span class="plainlinks">[https://sekiro-shadows-die-twice.fandom.com Sekiro: Shadows Die Twice]</span>
* <span class="plainlinks">[https://shadowofwar.fandom.com Middle-earth: Shadow of Mordor]</span>
* <span class="plainlinks">[https://shantae.fandom.com Shantae]</span>
* <span class="plainlinks">[https://simpsonstappedout.fandom.com The Simpsons: Tapped Out]</span>
* <span class="plainlinks">[https://skyforge.fandom.com Skyforge]</span>
* <span class="plainlinks">[https://skylanders.fandom.com Skylanders]</span>
* <span class="plainlinks">[https://slimerancher.fandom.com Slime Rancher]</span>
* <span class="plainlinks">[https://sonic.fandom.com Sonic News Network]</span>
* <span class="plainlinks">[https://soulcalibur.fandom.com Soulcalibur]</span>
* <span class="plainlinks">[https://soul-knight.fandom.com Soul Knight]</span>
* <span class="plainlinks">[https://splatoon.fandom.com Splatoon]</span>
* <span class="plainlinks">[https://starcitizen.fandom.com Star Citizen]</span>
* <span class="plainlinks">[https://starwarsjedifallenorder.fandom.com Star Wars Jedi: Fallen Order]</span>
* <span class="plainlinks">[https://streetfighter.fandom.com Street Fighter]</span>
* <span class="plainlinks">[https://subnautica.fandom.com Subnautica]</span>
* <span class="plainlinks">[https://summonerswar.fandom.com Summoners War: Sky Arena]</span>
* <span class="plainlinks">[https://supersmashbros.fandom.com Smashpedia]</span>
| group3 = Movies
| list3 = WIP
| group4 = Anime
| list4 = WIP
| group5 = Everything Else
| list5 = WIP
| below =
* [[wikipedia:Category:Fandom (website)|Category]]
* [[wikipedia:Portal:Games|Portal]]
}}
dcf420c724f65857d3247f11f97c6fe087363bb1
21
20
2023-01-23T14:48:18Z
TAPCLAPgamefansince2018
30634029
wikitext
text/x-wiki
{{Navbox
| name = Fandom wikis and communities
| title = [[en:Fandom (website)|Fandom]] wikis and communities
| bodyclass = hlist
| border = {{{1|}}}
| state = {{{state|<noinclude>expanded</noinclude>autocollapse}}}
| group1 = TV
| list1 =
* <span class="plainlinks">[https://thecw.fandom.com The CW]</span>
* <span class="plainlinks">[https://walkingdead.fandom.com Walking Dead]</span>
* <span class="plainlinks">[https://www.tardis.fandom.com Tardis]</span>
* <span class="plainlinks">[https://memory-alpha.fandom.com Memory Alpha]</span>
* <span class="plainlinks">[https://riverdale.fandom.com Archieverse]</span>
* <span class="plainlinks">[https://arrow.fandom.com Arrowverse]</span>
* <span class="plainlinks">[https://gameofthrones.fandom.com Game of Thrones]</span>
* <span class="plainlinks">[https://strangerthings.fandom.com Stranger Things]</span>
* <span class="plainlinks">[https://rickandmorty.fandom.com Rick and Morty]</span>
* <span class="plainlinks">[https://television.fandom.com Television]</span>
* <span class="plainlinks">[https://13reasonswhy.fandom.com 13 Reasons Why]</span>
* <span class="plainlinks">[https://24.fandom.com Wiki 24]</span>
* <span class="plainlinks">[https://amillionlittlethings.fandom.com A Million Little Things]</span>
* <span class="plainlinks">[https://abc.fandom.com ABC]</span>
* <span class="plainlinks">[https://adventuretime.fandom.com Adventure Time]</span>
* <span class="plainlinks">[https://agents-of-mayhem.fandom.com Agents of Mayhem]</span>
* <span class="plainlinks">[https://ajin.fandom.com Ajin]</span>
* <span class="plainlinks">[https://altered-carbon.fandom.com Altered Carbon]</span>
* <span class="plainlinks">[https://americangods.fandom.com American Gods]</span>
* <span class="plainlinks">[https://americanhorrorstory.fandom.com American Horror Story]</span>
* <span class="plainlinks">[https://americanhousewife.fandom.com American Housewife]</span>
* <span class="plainlinks">[https://americanidol.fandom.com American Idol]</span>
* <span class="plainlinks">[https://amphibia.fandom.com Amphibia]</span>
* <span class="plainlinks">[https://archer.fandom.com Archer]</span>
* <span class="plainlinks">[https://avatar.fandom.com Avatar]</span>
* <span class="plainlinks">[https://bachelor-nation.fandom.com Bachelor Nation]</span>
* <span class="plainlinks">[https://bakerstreet.fandom.com Baker Street]</span>
* <span class="plainlinks">[https://battlefordreamisland.fandom.com Battle for Dream Island]</span>
* <span class="plainlinks">[https://beavisandbutthead.fandom.com Beavis and Butt-Head]</span>
* <span class="plainlinks">[https://ben10.fandom.com Ben 10]</span>
* <span class="plainlinks">[https://bigbangtheory.fandom.com The Big Bang Theory]</span>
* <span class="plainlinks">[https://black-mirror.fandom.com Black Mirror]</span>
* <span class="plainlinks">[https://blackish.fandom.com Black-ish]</span>
* <span class="plainlinks">[https://bojackhorseman.fandom.com BoJack Horseman]</span>
* <span class="plainlinks">[https://breakingbad.fandom.com Breaking Bad]</span>
* <span class="plainlinks">[https://buffy.fandom.com Buffyverse]</span>
* <span class="plainlinks">[https://charmed.fandom.com Charmed]</span> π° <span class="plainlinks">[https://charmed-reboot.fandom.com/wiki Charmed (2018)]</span>
* <span class="plainlinks">[https://thekaratekid.fandom.com The Karate Kid]</span>
* <span class="plainlinks">[https://criminalminds.fandom.com Criminal Minds]</span>
* <span class="plainlinks">[https://criticalrole.fandom.com Critical Role]</span>
* <span class="plainlinks">[https://dancemoms.fandom.com Dance Moms]</span>
* <span class="plainlinks">[https://dancingwiththestars.fandom.com Dancing with the Stars]</span>
* <span class="plainlinks">[https://dark-netflix.fandom.com Dark]</span>
* <span class="plainlinks">[https://darkcrystal.fandom.com The Dark Crystal]</span>
* <span class="plainlinks">[https://dawsonscreek.fandom.com Dawson's Creek]</span>
* <span class="plainlinks">[https://degrassi.fandom.com Degrassi]</span>
* <span class="plainlinks">[https://dora.fandom.com Dora the Explorer]</span>
* <span class="plainlinks">[https://downtonabbey.fandom.com Downton Abbey]</span>
* <span class="plainlinks">[https://rupaulsdragrace.fandom.com RuPaul's Drag Race]</span>
* <span class="plainlinks">[https://ducktales.fandom.com DuckTales]</span>
* <span class="plainlinks">[https://eastenders.fandom.com EastEnders]</span>
* <span class="plainlinks">[https://elite-netflix.fandom.com Elite]</span>
* <span class="plainlinks">[https://everythings-gonna-be-okay.fandom.com Everything's Gonna Be Okay]</span>
* <span class="plainlinks">[https://fatethewinxsaga.fandom.com Fate: The Winx Saga]</span>
* <span class="plainlinks">[https://friends.fandom.com Friends]</span>
* <span class="plainlinks">[https://fullhouse.fandom.com Full House]</span>
* <span class="plainlinks">[https://gilmoregirls.fandom.com Gilmore Girls]</span>
* <span class="plainlinks">[https://glee.fandom.com Glee]</span>
* <span class="plainlinks">[https://glitchtale.fandom.com Glitchtale]</span>
* <span class="plainlinks">[https://goodomens.fandom.com Good Omens]</span>
* <span class="plainlinks">[https://goodtrouble.fandom.com Good Trouble]</span>
* <span class="plainlinks">[https://gravityfalls.fandom.com Gravity Falls]</span>
* <span class="plainlinks">[https://greysanatomy.fandom.com Grey's Anatomy]</span>
* <span class="plainlinks">[https://grimm.fandom.com Grimm]</span>
* <span class="plainlinks">[https://hannibal.fandom.com Hannibal]</span>
* <span class="plainlinks">[https://hawaiifiveo.fandom.com Hawaii Five-0]</span>
* <span class="plainlinks">[https://hellskitchen.fandom.com Hell's Kitchen]</span>
* <span class="plainlinks">[https://heroes.fandom.com Heroes]</span>
* <span class="plainlinks">[https://houseofcards.fandom.com House of Cards]</span>
* <span class="plainlinks">[https://iamnotokaywiththis.fandom.com I Am Not Okay with This]</span>
* <span class="plainlinks">[https://killingeve.fandom.com Killing Eve]</span>
* <span class="plainlinks">[https://kingdom-netflix.fandom.com Kingdom]</span>
* <span class="plainlinks">[https://kipo.fandom.com Kipo and the Age of Wonderbeasts]</span>
* <span class="plainlinks">[https://lockekey.fandom.com Locke & Key]</span>
* <span class="plainlinks">[https://lostpedia.fandom.com Lostpedia]</span>
* <span class="plainlinks">[https://lucifer.fandom.com Lucifer]</span>
* <span class="plainlinks">[https://madmen.fandom.com Mad Men]</span>
* <span class="plainlinks">[https://mash.fandom.com M*A*S*H]</span>
* <span class="plainlinks">[https://milomurphyslaw.fandom.com Milo Murphy's Law]</span>
* <span class="plainlinks">[https://mindhunter.fandom.com Mindhunter]</span>
* <span class="plainlinks">[https://miraculousladybug.fandom.com Miraculous Ladybug]</span>
* <span class="plainlinks">[https://modernfamily.fandom.com Modern Family]</span>
* <span class="plainlinks">[https://motherland.fandom.com Motherland: Fort Salem]</span>
* <span class="plainlinks">[https://mlp.fandom.com My Little Pony: Friendship Is Magic]</span>
* <span class="plainlinks">[https://nancydrew.fandom.com Nancy Drew]</span>
* <span class="plainlinks">[https://nos4a2.fandom.com NOS4A2]</span>
* <span class="plainlinks">[https://onceuponatime.fandom.com Once Upon a Time]</span>
* <span class="plainlinks">[https://orange-is-the-new-black.fandom.com Orange Is the New Black]</span>
* <span class="plainlinks">[https://orphanblack.fandom.com Orphan Black]</span>
* <span class="plainlinks">[https://outlander.fandom.com Outlander]</span>
* <span class="plainlinks">[https://parksandrecreation.fandom.com Parks and Recreation]</span>
* <span class="plainlinks">[https://phineasandferb.fandom.com Phineas and Ferb]</span>
* <span class="plainlinks">[https://starzpower.fandom.com Power]</span>
* <span class="plainlinks">[https://powerrangers.fandom.com RangerWiki]</span>
* <span class="plainlinks">[https://preacher.fandom.com Preacher]</span>
* <span class="plainlinks">[https://prettylittleliars.fandom.com Pretty Little Liars]</span>
* <span class="plainlinks">[https://psychusa.fandom.com Psych]</span>
* <span class="plainlinks">[https://regularshow.fandom.com Regular Show]</span>
* <span class="plainlinks">[https://roswell.fandom.com Roswell]</span>
* <span class="plainlinks">[https://sasukepedia.fandom.com Sasuke Ninja Warrior]</span>
* <span class="plainlinks">[https://scandal.fandom.com Scandal]</span>
* <span class="plainlinks">[https://scoobydoo.fandom.com Scoobypedia]</span>
* <span class="plainlinks">[https://scream-queens.fandom.com Scream Queens Wiki]</span>
* <span class="plainlinks">[https://sexeducation.fandom.com Sex Education]</span>
* <span class="plainlinks">[https://she-raandtheprincessesofpower.fandom.com She-Ra and the Princesses of Power]</span>
* <span class="plainlinks">[https://simpsons.fandom.com The Simpsons]</span>
* <span class="plainlinks">[https://siren.fandom.com Siren]</span>
* <span class="plainlinks">[https://snowpiercer.fandom.com Snowpiercer]</span>
* <span class="plainlinks">[https://southpark.fandom.com South Park Archives]</span>
* <span class="plainlinks">[https://spartacus.fandom.com Spartacus]</span>
* <span class="plainlinks">[https://spongebob.fandom.com Encyclopedia SpongeBobia]</span>
* <span class="plainlinks">[https://starwarsresistance.fandom.com Star Wars Resistance]</span>
* <span class="plainlinks">[https://stargate.fandom.com SGCommand]</span>
* <span class="plainlinks">[https://stargirl.fandom.com Stargirl]</span>
* <span class="plainlinks">[https://steven-universe.fandom.com Steven Universe]</span>
* <span class="plainlinks">[https://stumptown.fandom.com Stumptown]</span>
* <span class="plainlinks">[https://supernatural.fandom.com Supernatural]</span>
* <span class="plainlinks">[https://survivor.fandom.com Survivor]</span>
* <span class="plainlinks">[https://ted-lasso.fandom.com Ted Lasso]</span>
* <span class="plainlinks">[https://the100.fandom.com The 100]</span>
* <span class="plainlinks">[https://theamazingworldofgumball.fandom.com The Amazing World of Gumball]</span>
* <span class="plainlinks">[https://theboldtype.fandom.com The Bold Type]</span>
* <span class="plainlinks">[https://the-boys.fandom.com The Boys]</span>
* <span class="plainlinks">[https://thechallenge.fandom.com The Challenge]</span>
* <span class="plainlinks">[https://dragonprince.fandom.com The Dragon Prince]</span>
* <span class="plainlinks">[https://expanse.fandom.com The Expanse]</span>
* <span class="plainlinks">[https://thegoldbergs.fandom.com The Goldbergs π° Schooled]</span>
* <span class="plainlinks">[https://the-good-doctor.fandom.com The Good Doctor]</span>
* <span class="plainlinks">[https://thegoodplace.fandom.com The Good Place]</span>
* <span class="plainlinks">[https://theloudhouse.fandom.com The Loud House Encyclopedia]</span>
* <span class="plainlinks">[https://the-man-in-the-high-castle.fandom.com The Man in the High Castle]</span>
* <span class="plainlinks">[https://muppet.fandom.com The Muppets]</span>
* <span class="plainlinks">[https://theoffice.fandom.com The Office]</span>
* <span class="plainlinks">[https://orville.fandom.com The Orville]</span>
* <span class="plainlinks">[https://yakusokunoneverland.fandom.com The Promised Neverland]</span>
* <span class="plainlinks">[https://the-rookie.fandom.com The Rookie]</span>
* <span class="plainlinks">[https://vampirediaries.fandom.com The Vampire Diaries]</span>
* <span class="plainlinks">[https://westwing.fandom.com The West Wing]</span>
* <span class="plainlinks">[https://ttte.fandom.com Thomas & Friends]</span>
* <span class="plainlinks">[https://transformers.fandom.com Transformers]</span>
* <span class="plainlinks">[https://kimmyschmidt.fandom.com Unbreakable Kimmy Schmidt]</span>
* <span class="plainlinks">[https://vikings.fandom.com Vikings]</span>
* <span class="plainlinks">[https://www.voltron.fandom.com Voltron]</span>
* <span class="plainlinks">[https://westworld.fandom.com Westworld]</span>
* <span class="plainlinks">[https://winx.fandom.com Winx Club]</span>
* <span class="plainlinks">[https://youngjustice.fandom.com Young Justice]</span>
* <span class="plainlinks">[https://youtube.fandom.com Wikitubia]</span>
| group2 = Games
| list2 =
* <span class="plainlinks">[https://playstation.fandom.com PlayStation]</span>
* <span class="plainlinks">[https://xbox.fandom.com Xbox]</span>
* <span class="plainlinks">[https://elderscrolls.fandom.com Elder Scrolls]</span>
* <span class="plainlinks">[https://callofduty.fandom.com Call of Duty]</span>
* <span class="plainlinks">[https://pokemon.fandom.com PokΓ©mon]</span>
* <span class="plainlinks">[https://overwatch.fandom.com Overwatch]</span>
* <span class="plainlinks">[https://zelda.fandom.com The Legend of Zelda]</span>
* <span class="plainlinks">[https://fortnite.fandom.com Fortnite]</span>
* <span class="plainlinks">[https://apexlegends.fandom.com Apex Legends]</span>
* <span class="plainlinks">[https://reddead.fandom.com Red Dead]</span>
* <span class="plainlinks">[https://blizzard.fandom.com Blizzard Entertainment]</span>
* <span class="plainlinks">[https://mario.fandom.com Super Mario]</span>
* <span class="plainlinks">[https://fallout.fandom.com Fallout]</span>
* <span class="plainlinks">[https://acecombat.fandom.com Acepedia]</span>
* <span class="plainlinks">[https://ageofempires.fandom.com Age of Empires]</span>
* <span class="plainlinks">[https://among-us.fandom.com Among Us]</span>
* <span class="plainlinks">[https://angrybirds.fandom.com Angry Birds]</span>
* <span class="plainlinks">[https://animalcrossing.fandom.com Animal Crossing]</span>
* <span class="plainlinks">[https://anno1800.fandom.com Anno 1800]</span>
* <span class="plainlinks">[https://archero.fandom.com Archero]</span>
* <span class="plainlinks">[https://assassinscreed.fandom.com Assassin's Creed]</span>
* <span class="plainlinks">[https://avengersalliance.fandom.com Marvel Avengers Alliance]</span>
* <span class="plainlinks">[https://baldursgate.fandom.com Baldur's Gate]</span>
* <span class="plainlinks">[https://battleborn.fandom.com Battleborn]</span>
* <span class="plainlinks">[https://battlefield.fandom.com Battlefield]</span>
* <span class="plainlinks">[https://battlefront.fandom.com Star Wars: Battlefront]</span>
* <span class="plainlinks">[https://bioshock.fandom.com BioShock]</span>
* <span class="plainlinks">[https://bloodbrothersgame.fandom.com/wiki/Blood_Brothers_Wiki Blood Brothers]</span>
* <span class="plainlinks">[https://bloodborne.fandom.com Bloodborne]</span>
* <span class="plainlinks">[https://boombeach.fandom.com Boom Beach]</span>
* <span class="plainlinks">[https://borderlands.fandom.com Borderlands]</span>
* <span class="plainlinks">[https://bravefrontierglobal.fandom.com Brave Frontier]</span>
* <span class="plainlinks">[https://brawlstars.fandom.com Brawl Stars]</span>
* <span class="plainlinks">[https://candycrush.fandom.com Candy Crush Saga]</span>
* <span class="plainlinks">[https://castlevania.fandom.com Castlevania]</span>
* <span class="plainlinks">[https://choices-stories-you-play.fandom.com Choices: Stories You Play]</span>
* <span class="plainlinks">[https://civilization.fandom.com Civilization]</span>
* <span class="plainlinks">[https://clashofclans.fandom.com Clash of Clans]</span>
* <span class="plainlinks">[https://clashroyale.fandom.com Clash Royale]</span>
* <span class="plainlinks">[https://clubpenguin.fandom.com Club Penguin]</span>
* <span class="plainlinks">[https://cnc.fandom.com Command & Conquer]</span>
* <span class="plainlinks">[https://www.crashbandicoot.fandom.com Bandipedia]</span>
* <span class="plainlinks">[https://cyberpunk.fandom.com Cyberpunk]</span>
* <span class="plainlinks">[https://danganronpa.fandom.com Danganronpa]</span>
* <span class="plainlinks">[https://darksouls.fandom.com Dark Souls]</span>
* <span class="plainlinks">[https://dow.fandom.com Dawn of War]</span>
* <span class="plainlinks">[https://deadbydaylight.fandom.com Dead by Daylight]</span>
* <span class="plainlinks">[https://deathstranding.fandom.com Death Stranding]</span>
* <span class="plainlinks">[https://destiny.fandom.com Destiny]</span>
* <span class="plainlinks">[https://devilmaycry.fandom.com Devil May Cry]</span>
* <span class="plainlinks">[https://dishonored.fandom.com Dishonored]</span>
* <span class="plainlinks">[https://divinity.fandom.com Divinity]</span>
* <span class="plainlinks">[https://dontstarve.fandom.com Don't Starve]</span>
* <span class="plainlinks">[https://doom.fandom.com Doom]</span>
* <span class="plainlinks">[https://dragonage.fandom.com Dragon Age]</span>
* <span class="plainlinks">[https://dragonquest.fandom.com Dragon Quest]</span>
* <span class="plainlinks">[https://dragon-story.fandom.com Dragon Story]</span>
* <span class="plainlinks">[https://dragonsdogma.fandom.com Dragon's Dogma]</span>
* <span class="plainlinks">[https://dragonvale.fandom.com DragonVale]</span>
* <span class="plainlinks">[https://dyinglight.fandom.com Dying Light]</span>
* <span class="plainlinks">[https://elite-dangerous.fandom.com Elite Dangerous]</span>
* <span class="plainlinks">[https://evolve.fandom.com Evolve]</span>
* <span class="plainlinks">[https://farcry.fandom.com Far Cry]</span>
* <span class="plainlinks">[https://fategrandorder.fandom.com Fate/Grand Order]</span>
* <span class="plainlinks">[https://fifa.fandom.com FIFA]</span>
* <span class="plainlinks">[https://finalfantasy.fandom.com Final Fantasy]</span>
* <span class="plainlinks">[https://fireemblem.fandom.com Fire Emblem]</span>
* <span class="plainlinks">[https://freddy-fazbears-pizza.fandom.com Five Nights at Freddy's]</span>
* <span class="plainlinks">[https://five-nights-at-treasure-island.fandom.com Five Nights at Treasure Island]</span>
* <span class="plainlinks">[https://forhonor.fandom.com For Honor]</span>
* <span class="plainlinks">[https://forgeofempires.fandom.com Forge of Empires]</span>
* <span class="plainlinks">[https://forgottenrealms.fandom.com Forgotten Realms]</span>
* <span class="plainlinks">[https://forza.fandom.com Forza]</span>
* <span class="plainlinks">[https://gearsofwar.fandom.com Gears of War]</span>
* <span class="plainlinks">[https://genshin-impact.fandom.com Genshin Impact]</span>
* <span class="plainlinks">[https://ghostrecon.fandom.com Ghost Recon]</span>
* <span class="plainlinks">[https://godofwar.fandom.com God of War]</span>
* <span class="plainlinks">[https://gran-turismo.fandom.com Gran Turismo]</span>
* <span class="plainlinks">[https://growtopia.fandom.com Growtopia]</span>
* <span class="plainlinks">[https://gta.fandom.com Grand Theft Auto]</span>
* <span class="plainlinks">[https://gwent.fandom.com Gwent: The Witcher Card Game]</span>
* <span class="plainlinks">[https://half-life.fandom.com Half-Life]</span>
* <span class="plainlinks">[https://halo.fandom.com Halo Alpha]</span>
* <span class="plainlinks">[https://harvestmoon.fandom.com Harvest Moon]</span>
* <span class="plainlinks">[https://hayday.fandom.com Hay Day]</span>
* <span class="plainlinks">[https://hearthstone.fandom.com Hearthstone]</span>
* <span class="plainlinks">[https://heroesofthestorm.fandom.com Heroes of the Storm]</span>
* <span class="plainlinks">[https://hitman.fandom.com Hitman]</span>
* <span class="plainlinks">[https://hollowknight.fandom.com Hollow Knight]</span>
* <span class="plainlinks">[https://horizon.fandom.com Horizon Zero Dawn]</span>
* <span class="plainlinks">[https://injustice.fandom.com Injustice: Gods Among Us]</span>
* <span class="plainlinks">[https://jailbreak.fandom.com Jailbreak]</span>
* <span class="plainlinks">[https://jurassicworld-evolution.fandom.com Jurassic World Evolution]</span>
* <span class="plainlinks">[https://justcause.fandom.com Just Cause]</span>
* <span class="plainlinks">[https://justdance.fandom.com Just Dance]</span>
* <span class="plainlinks">[https://kancolle.fandom.com KanColle]</span>
* <span class="plainlinks">[https://kenshi.fandom.com Kenshi]</span>
* <span class="plainlinks">[https://kingdomhearts.fandom.com Kingdom Hearts]</span>
* <span class="plainlinks">[https://kirby.fandom.com Kirby]</span>
* <span class="plainlinks">[https://www.knights-and-dragons.fandom.com Knights and Dragons]</span>
* <span class="plainlinks">[https://last-day-on-earth-survival.fandom.com Last Day on Earth: Survival]</span>
* <span class="plainlinks">[https://life-is-strange.fandom.com Life Is Strange]</span>
* <span class="plainlinks">[https://leagueoflegends.fandom.com League of Legends]</span>
* <span class="plainlinks">[https://lotrminecraftmod.fandom.com The Lord of the Rings Minecraft mod]</span>
* <span class="plainlinks">[https://lumber-tycoon-2.fandom.com Lumber Tycoon 2]</span>
* <span class="plainlinks">[https://mafiagame.fandom.com Mafia]</span>
* <span class="plainlinks">[https://mario.fandom.com MarioWiki]</span>
* <span class="plainlinks">[https://marvels-spider-man.fandom.com Marvel's Spider-Man]</span>
* <span class="plainlinks">[https://masseffect.fandom.com Mass Effect]</span>
* <span class="plainlinks">[https://megaman.fandom.com MMKB]</span>
* <span class="plainlinks">[https://metalgear.fandom.com Metal Gear]</span>
* <span class="plainlinks">[https://metro.fandom.com Metro]</span>
* <span class="plainlinks">[https://mightandmagic.fandom.com Might and Magic]</span>
* <span class="plainlinks">[https://minecraft.fandom.com Minecraft]</span>
* <span class="plainlinks">[https://minecraftstorymode.fandom.com Minecraft: Story Mode]</span>
* <span class="plainlinks">[https://mirrorsedge.fandom.com Mirror's Edge]</span>
* <span class="plainlinks">[https://monsterhunter.fandom.com Monster Hunter]</span>
* <span class="plainlinks">[https://monsterlegends.fandom.com Monster Legends]</span>
* <span class="plainlinks">[https://mortalkombat.fandom.com Mortal Kombat]</span>
* <span class="plainlinks">[https://mountandblade.fandom.com Mount & Blade]</span>
* <span class="plainlinks">[https://mugen.fandom.com MUGEN Database]</span>
* <span class="plainlinks">[https://mysingingmonsters.fandom.com My Singing Monsters]</span>
* <span class="plainlinks">[https://nintendo.fandom.com Nintendo]</span>
* <span class="plainlinks">[https://nomanssky.fandom.com No Man's Sky]</span>
* <span class="plainlinks">[https://octopathtraveler.fandom.com Octopath Traveler]</span>
* <span class="plainlinks">[https://oldschoolrunescape.fandom.com Old School RuneScape]</span>
* <span class="plainlinks">[https://oriandtheblindforest.fandom.com Ori and the Blind Forest]</span>
* <span class="plainlinks">[https://outlast.fandom.com Outlast]</span>
* <span class="plainlinks">[https://payday.fandom.com Payday]</span>
* <span class="plainlinks">[https://pixelgun.fandom.com Pixel Gun]</span>
* <span class="plainlinks">[https://pixelworlds.fandom.com Pixel Worlds]</span>
* <span class="plainlinks">[https://plantsvszombies.fandom.com Plants vs. Zombies]</span>
* <span class="plainlinks">[https://www.pubg.fandom.com PlayerUnknown's Battlegrounds]</span>
* <span class="plainlinks">[https://pad.fandom.com Puzzle & Dragons]</span>
* <span class="plainlinks">[https://rage.fandom.com Rage]</span>
* <span class="plainlinks">[https://rainbowsix.fandom.com Tom Clancy's Rainbow Six]</span>
* <span class="plainlinks">[https://rr3.fandom.com Real Racing 3]</span>
* <span class="plainlinks">[https://rec-room.fandom.com Rec Room]</span>
* <span class="plainlinks">[https://residentevil.fandom.com Resident Evil]</span>
* <span class="plainlinks">[https://romance-club.fandom.com Romance Club - Stories I Play]</span>
* <span class="plainlinks">[https://roosterteeth.fandom.com Rooster Teeth]</span>
* <span class="plainlinks">[https://runescape.fandom.com RuneScape]</span>
* <span class="plainlinks">[https://snk.fandom.com SNK]</span>
* <span class="plainlinks">[https://saintsrow.fandom.com Saints Row]</span>
* <span class="plainlinks">[https://seaofthieves.fandom.com Sea of Thieves]</span>
* <span class="plainlinks">[https://sekiro-shadows-die-twice.fandom.com Sekiro: Shadows Die Twice]</span>
* <span class="plainlinks">[https://shadowofwar.fandom.com Middle-earth: Shadow of Mordor]</span>
* <span class="plainlinks">[https://shantae.fandom.com Shantae]</span>
* <span class="plainlinks">[https://simpsonstappedout.fandom.com The Simpsons: Tapped Out]</span>
* <span class="plainlinks">[https://skyforge.fandom.com Skyforge]</span>
* <span class="plainlinks">[https://skylanders.fandom.com Skylanders]</span>
* <span class="plainlinks">[https://slimerancher.fandom.com Slime Rancher]</span>
* <span class="plainlinks">[https://sonic.fandom.com Sonic News Network]</span>
* <span class="plainlinks">[https://soulcalibur.fandom.com Soulcalibur]</span>
* <span class="plainlinks">[https://soul-knight.fandom.com Soul Knight]</span>
* <span class="plainlinks">[https://splatoon.fandom.com Splatoon]</span>
* <span class="plainlinks">[https://starcitizen.fandom.com Star Citizen]</span>
* <span class="plainlinks">[https://starwarsjedifallenorder.fandom.com Star Wars Jedi: Fallen Order]</span>
* <span class="plainlinks">[https://streetfighter.fandom.com Street Fighter]</span>
* <span class="plainlinks">[https://subnautica.fandom.com Subnautica]</span>
* <span class="plainlinks">[https://summonerswar.fandom.com Summoners War: Sky Arena]</span>
* <span class="plainlinks">[https://supersmashbros.fandom.com Smashpedia]</span>
* <span class="plainlinks">[https://aselia.fandom.com Tales]</span>
* <span class="plainlinks">[https://tekken.fandom.com Tekken]</span>
* <span class="plainlinks">[https://terraria.fandom.com Terraria]</span>
* <span class="plainlinks">[https://bindingofisaac.fandom.com The Binding of Isaac]</span>
* <span class="plainlinks">[https://thedivision.fandom.com Tom Clancy's The Division]</span>
* <span class="plainlinks">[https://theevilwithin.fandom.com/wiki The Evil Within]</span>
* <span class="plainlinks">[https://lastremnant.fandom.com/wiki The Last Remnant]</span>
* <span class="plainlinks">[https://thelastofus.fandom.com The Last of Us]</span>
* <span class="plainlinks">[https://theouterworlds.fandom.com The Outer Worlds]</span>
* <span class="plainlinks">[https://sims.fandom.com The Sims]</span>
* <span class="plainlinks">[https://witcher.fandom.com The Witcher]</span>
* <span class="plainlinks">[https://tibia.fandom.com TibiaWiki]</span>
* <span class="plainlinks">[https://titanfall.fandom.com Titanfall]</span>
* <span class="plainlinks">[https://totalwar.fandom.com Total War]</span>
* <span class="plainlinks">[https://towerofsaviors.fandom.com Tower of Saviors]</span>
* <span class="plainlinks">[https://town-of-salem.fandom.com Town of Salem]</span>
* <span class="plainlinks">[https://typemoon.fandom.com Type-Moon]</span>
* <span class="plainlinks">[https://uncharted.fandom.com Uncharted]</span>
* <span class="plainlinks">[https://valkyriecrusade.fandom.com Valkyrie Cursade]</span>
* <span class="plainlinks">[https://valorant.fandom.com Valorant]</span>
* <span class="plainlinks">[https://vtmb.fandom.com Vampire: The Masquerade β Bloodlines]</span>
* <span class="plainlinks">[https://vivapinata.fandom.com Viva PiΓ±ata]</span>
* <span class="plainlinks">[https://warcommander.fandom.com War Commander]</span>
* <span class="plainlinks">[https://warframe.fandom.com Warframe]</span>
* <span class="plainlinks">[https://warhammer40k.fandom.com Warhammer 40,000]</span>
* <span class="plainlinks">[https://warhammerfantasy.fandom.com Warhammer Fantasy]</span>
* <span class="plainlinks">[https://watchdogs.fandom.com Watch Dogs]</span>
* <span class="plainlinks">[https://wolfenstein.fandom.com Wolfenstein]</span>
* <span class="plainlinks">[https://wowpedia.fandom.com/wiki/Wowpedia Wowpedia]</span>
* <span class="plainlinks">[https://xcom.fandom.com XCOM]</span>
* <span class="plainlinks">[https://xenoblade.fandom.com Xenoblade Chronicles]</span>
* <span class="plainlinks">[https://yakuza.fandom.com Yakuza]</span>
* <span class="plainlinks">[https://yokaiwatch.fandom.com Yo-kai Watch]</span>
* <span class="plainlinks">[https://yooka-laylee.fandom.com Yooka-Laylee]</span>
* <span class="plainlinks">[https://yoshi.fandom.com Yoshi]</span>
| group3 = Movies
| list3 = WIP
| group4 = Anime
| list4 = WIP
| group5 = Everything Else
| list5 = WIP
| below =
* [[wikipedia:Category:Fandom (website)|Category]]
* [[wikipedia:Portal:Games|Portal]]
}}
8ecd9db3bcd546a222b4f65780c745e3ff9939ff
22
21
2023-01-23T15:07:09Z
TAPCLAPgamefansince2018
30634029
Saving for now
wikitext
text/x-wiki
{{Navbox
| name = Fandom wikis and communities
| title = [[en:Fandom (website)|Fandom]] wikis and communities
| bodyclass = hlist
| border = {{{1|}}}
| state = {{{state|<noinclude>expanded</noinclude>autocollapse}}}
| group1 = TV
| list1 =
* <span class="plainlinks">[https://thecw.fandom.com The CW]</span>
* <span class="plainlinks">[https://walkingdead.fandom.com Walking Dead]</span>
* <span class="plainlinks">[https://www.tardis.fandom.com Tardis]</span>
* <span class="plainlinks">[https://memory-alpha.fandom.com Memory Alpha]</span>
* <span class="plainlinks">[https://riverdale.fandom.com Archieverse]</span>
* <span class="plainlinks">[https://arrow.fandom.com Arrowverse]</span>
* <span class="plainlinks">[https://gameofthrones.fandom.com Game of Thrones]</span>
* <span class="plainlinks">[https://strangerthings.fandom.com Stranger Things]</span>
* <span class="plainlinks">[https://rickandmorty.fandom.com Rick and Morty]</span>
* <span class="plainlinks">[https://television.fandom.com Television]</span>
* <span class="plainlinks">[https://13reasonswhy.fandom.com 13 Reasons Why]</span>
* <span class="plainlinks">[https://24.fandom.com Wiki 24]</span>
* <span class="plainlinks">[https://amillionlittlethings.fandom.com A Million Little Things]</span>
* <span class="plainlinks">[https://abc.fandom.com ABC]</span>
* <span class="plainlinks">[https://adventuretime.fandom.com Adventure Time]</span>
* <span class="plainlinks">[https://agents-of-mayhem.fandom.com Agents of Mayhem]</span>
* <span class="plainlinks">[https://ajin.fandom.com Ajin]</span>
* <span class="plainlinks">[https://altered-carbon.fandom.com Altered Carbon]</span>
* <span class="plainlinks">[https://americangods.fandom.com American Gods]</span>
* <span class="plainlinks">[https://americanhorrorstory.fandom.com American Horror Story]</span>
* <span class="plainlinks">[https://americanhousewife.fandom.com American Housewife]</span>
* <span class="plainlinks">[https://americanidol.fandom.com American Idol]</span>
* <span class="plainlinks">[https://amphibia.fandom.com Amphibia]</span>
* <span class="plainlinks">[https://archer.fandom.com Archer]</span>
* <span class="plainlinks">[https://avatar.fandom.com Avatar]</span>
* <span class="plainlinks">[https://bachelor-nation.fandom.com Bachelor Nation]</span>
* <span class="plainlinks">[https://bakerstreet.fandom.com Baker Street]</span>
* <span class="plainlinks">[https://battlefordreamisland.fandom.com Battle for Dream Island]</span>
* <span class="plainlinks">[https://beavisandbutthead.fandom.com Beavis and Butt-Head]</span>
* <span class="plainlinks">[https://ben10.fandom.com Ben 10]</span>
* <span class="plainlinks">[https://bigbangtheory.fandom.com The Big Bang Theory]</span>
* <span class="plainlinks">[https://black-mirror.fandom.com Black Mirror]</span>
* <span class="plainlinks">[https://blackish.fandom.com Black-ish]</span>
* <span class="plainlinks">[https://bojackhorseman.fandom.com BoJack Horseman]</span>
* <span class="plainlinks">[https://breakingbad.fandom.com Breaking Bad]</span>
* <span class="plainlinks">[https://buffy.fandom.com Buffyverse]</span>
* <span class="plainlinks">[https://charmed.fandom.com Charmed]</span> π° <span class="plainlinks">[https://charmed-reboot.fandom.com/wiki Charmed (2018)]</span>
* <span class="plainlinks">[https://thekaratekid.fandom.com The Karate Kid]</span>
* <span class="plainlinks">[https://criminalminds.fandom.com Criminal Minds]</span>
* <span class="plainlinks">[https://criticalrole.fandom.com Critical Role]</span>
* <span class="plainlinks">[https://dancemoms.fandom.com Dance Moms]</span>
* <span class="plainlinks">[https://dancingwiththestars.fandom.com Dancing with the Stars]</span>
* <span class="plainlinks">[https://dark-netflix.fandom.com Dark]</span>
* <span class="plainlinks">[https://darkcrystal.fandom.com The Dark Crystal]</span>
* <span class="plainlinks">[https://dawsonscreek.fandom.com Dawson's Creek]</span>
* <span class="plainlinks">[https://degrassi.fandom.com Degrassi]</span>
* <span class="plainlinks">[https://dora.fandom.com Dora the Explorer]</span>
* <span class="plainlinks">[https://downtonabbey.fandom.com Downton Abbey]</span>
* <span class="plainlinks">[https://rupaulsdragrace.fandom.com RuPaul's Drag Race]</span>
* <span class="plainlinks">[https://ducktales.fandom.com DuckTales]</span>
* <span class="plainlinks">[https://eastenders.fandom.com EastEnders]</span>
* <span class="plainlinks">[https://elite-netflix.fandom.com Elite]</span>
* <span class="plainlinks">[https://everythings-gonna-be-okay.fandom.com Everything's Gonna Be Okay]</span>
* <span class="plainlinks">[https://fatethewinxsaga.fandom.com Fate: The Winx Saga]</span>
* <span class="plainlinks">[https://friends.fandom.com Friends]</span>
* <span class="plainlinks">[https://fullhouse.fandom.com Full House]</span>
* <span class="plainlinks">[https://gilmoregirls.fandom.com Gilmore Girls]</span>
* <span class="plainlinks">[https://glee.fandom.com Glee]</span>
* <span class="plainlinks">[https://glitchtale.fandom.com Glitchtale]</span>
* <span class="plainlinks">[https://goodomens.fandom.com Good Omens]</span>
* <span class="plainlinks">[https://goodtrouble.fandom.com Good Trouble]</span>
* <span class="plainlinks">[https://gravityfalls.fandom.com Gravity Falls]</span>
* <span class="plainlinks">[https://greysanatomy.fandom.com Grey's Anatomy]</span>
* <span class="plainlinks">[https://grimm.fandom.com Grimm]</span>
* <span class="plainlinks">[https://hannibal.fandom.com Hannibal]</span>
* <span class="plainlinks">[https://hawaiifiveo.fandom.com Hawaii Five-0]</span>
* <span class="plainlinks">[https://hellskitchen.fandom.com Hell's Kitchen]</span>
* <span class="plainlinks">[https://heroes.fandom.com Heroes]</span>
* <span class="plainlinks">[https://houseofcards.fandom.com House of Cards]</span>
* <span class="plainlinks">[https://iamnotokaywiththis.fandom.com I Am Not Okay with This]</span>
* <span class="plainlinks">[https://killingeve.fandom.com Killing Eve]</span>
* <span class="plainlinks">[https://kingdom-netflix.fandom.com Kingdom]</span>
* <span class="plainlinks">[https://kipo.fandom.com Kipo and the Age of Wonderbeasts]</span>
* <span class="plainlinks">[https://lockekey.fandom.com Locke & Key]</span>
* <span class="plainlinks">[https://lostpedia.fandom.com Lostpedia]</span>
* <span class="plainlinks">[https://lucifer.fandom.com Lucifer]</span>
* <span class="plainlinks">[https://madmen.fandom.com Mad Men]</span>
* <span class="plainlinks">[https://mash.fandom.com M*A*S*H]</span>
* <span class="plainlinks">[https://milomurphyslaw.fandom.com Milo Murphy's Law]</span>
* <span class="plainlinks">[https://mindhunter.fandom.com Mindhunter]</span>
* <span class="plainlinks">[https://miraculousladybug.fandom.com Miraculous Ladybug]</span>
* <span class="plainlinks">[https://modernfamily.fandom.com Modern Family]</span>
* <span class="plainlinks">[https://motherland.fandom.com Motherland: Fort Salem]</span>
* <span class="plainlinks">[https://mlp.fandom.com My Little Pony: Friendship Is Magic]</span>
* <span class="plainlinks">[https://nancydrew.fandom.com Nancy Drew]</span>
* <span class="plainlinks">[https://nos4a2.fandom.com NOS4A2]</span>
* <span class="plainlinks">[https://onceuponatime.fandom.com Once Upon a Time]</span>
* <span class="plainlinks">[https://orange-is-the-new-black.fandom.com Orange Is the New Black]</span>
* <span class="plainlinks">[https://orphanblack.fandom.com Orphan Black]</span>
* <span class="plainlinks">[https://outlander.fandom.com Outlander]</span>
* <span class="plainlinks">[https://parksandrecreation.fandom.com Parks and Recreation]</span>
* <span class="plainlinks">[https://phineasandferb.fandom.com Phineas and Ferb]</span>
* <span class="plainlinks">[https://starzpower.fandom.com Power]</span>
* <span class="plainlinks">[https://powerrangers.fandom.com RangerWiki]</span>
* <span class="plainlinks">[https://preacher.fandom.com Preacher]</span>
* <span class="plainlinks">[https://prettylittleliars.fandom.com Pretty Little Liars]</span>
* <span class="plainlinks">[https://psychusa.fandom.com Psych]</span>
* <span class="plainlinks">[https://regularshow.fandom.com Regular Show]</span>
* <span class="plainlinks">[https://roswell.fandom.com Roswell]</span>
* <span class="plainlinks">[https://sasukepedia.fandom.com Sasuke Ninja Warrior]</span>
* <span class="plainlinks">[https://scandal.fandom.com Scandal]</span>
* <span class="plainlinks">[https://scoobydoo.fandom.com Scoobypedia]</span>
* <span class="plainlinks">[https://scream-queens.fandom.com Scream Queens Wiki]</span>
* <span class="plainlinks">[https://sexeducation.fandom.com Sex Education]</span>
* <span class="plainlinks">[https://she-raandtheprincessesofpower.fandom.com She-Ra and the Princesses of Power]</span>
* <span class="plainlinks">[https://simpsons.fandom.com The Simpsons]</span>
* <span class="plainlinks">[https://siren.fandom.com Siren]</span>
* <span class="plainlinks">[https://snowpiercer.fandom.com Snowpiercer]</span>
* <span class="plainlinks">[https://southpark.fandom.com South Park Archives]</span>
* <span class="plainlinks">[https://spartacus.fandom.com Spartacus]</span>
* <span class="plainlinks">[https://spongebob.fandom.com Encyclopedia SpongeBobia]</span>
* <span class="plainlinks">[https://starwarsresistance.fandom.com Star Wars Resistance]</span>
* <span class="plainlinks">[https://stargate.fandom.com SGCommand]</span>
* <span class="plainlinks">[https://stargirl.fandom.com Stargirl]</span>
* <span class="plainlinks">[https://steven-universe.fandom.com Steven Universe]</span>
* <span class="plainlinks">[https://stumptown.fandom.com Stumptown]</span>
* <span class="plainlinks">[https://supernatural.fandom.com Supernatural]</span>
* <span class="plainlinks">[https://survivor.fandom.com Survivor]</span>
* <span class="plainlinks">[https://ted-lasso.fandom.com Ted Lasso]</span>
* <span class="plainlinks">[https://the100.fandom.com The 100]</span>
* <span class="plainlinks">[https://theamazingworldofgumball.fandom.com The Amazing World of Gumball]</span>
* <span class="plainlinks">[https://theboldtype.fandom.com The Bold Type]</span>
* <span class="plainlinks">[https://the-boys.fandom.com The Boys]</span>
* <span class="plainlinks">[https://thechallenge.fandom.com The Challenge]</span>
* <span class="plainlinks">[https://dragonprince.fandom.com The Dragon Prince]</span>
* <span class="plainlinks">[https://expanse.fandom.com The Expanse]</span>
* <span class="plainlinks">[https://thegoldbergs.fandom.com The Goldbergs π° Schooled]</span>
* <span class="plainlinks">[https://the-good-doctor.fandom.com The Good Doctor]</span>
* <span class="plainlinks">[https://thegoodplace.fandom.com The Good Place]</span>
* <span class="plainlinks">[https://theloudhouse.fandom.com The Loud House Encyclopedia]</span>
* <span class="plainlinks">[https://the-man-in-the-high-castle.fandom.com The Man in the High Castle]</span>
* <span class="plainlinks">[https://muppet.fandom.com The Muppets]</span>
* <span class="plainlinks">[https://theoffice.fandom.com The Office]</span>
* <span class="plainlinks">[https://orville.fandom.com The Orville]</span>
* <span class="plainlinks">[https://yakusokunoneverland.fandom.com The Promised Neverland]</span>
* <span class="plainlinks">[https://the-rookie.fandom.com The Rookie]</span>
* <span class="plainlinks">[https://vampirediaries.fandom.com The Vampire Diaries]</span>
* <span class="plainlinks">[https://westwing.fandom.com The West Wing]</span>
* <span class="plainlinks">[https://ttte.fandom.com Thomas & Friends]</span>
* <span class="plainlinks">[https://transformers.fandom.com Transformers]</span>
* <span class="plainlinks">[https://kimmyschmidt.fandom.com Unbreakable Kimmy Schmidt]</span>
* <span class="plainlinks">[https://vikings.fandom.com Vikings]</span>
* <span class="plainlinks">[https://www.voltron.fandom.com Voltron]</span>
* <span class="plainlinks">[https://westworld.fandom.com Westworld]</span>
* <span class="plainlinks">[https://winx.fandom.com Winx Club]</span>
* <span class="plainlinks">[https://youngjustice.fandom.com Young Justice]</span>
* <span class="plainlinks">[https://youtube.fandom.com Wikitubia]</span>
| group2 = Games
| list2 =
* <span class="plainlinks">[https://playstation.fandom.com PlayStation]</span>
* <span class="plainlinks">[https://xbox.fandom.com Xbox]</span>
* <span class="plainlinks">[https://elderscrolls.fandom.com Elder Scrolls]</span>
* <span class="plainlinks">[https://callofduty.fandom.com Call of Duty]</span>
* <span class="plainlinks">[https://pokemon.fandom.com PokΓ©mon]</span>
* <span class="plainlinks">[https://overwatch.fandom.com Overwatch]</span>
* <span class="plainlinks">[https://zelda.fandom.com The Legend of Zelda]</span>
* <span class="plainlinks">[https://fortnite.fandom.com Fortnite]</span>
* <span class="plainlinks">[https://apexlegends.fandom.com Apex Legends]</span>
* <span class="plainlinks">[https://reddead.fandom.com Red Dead]</span>
* <span class="plainlinks">[https://blizzard.fandom.com Blizzard Entertainment]</span>
* <span class="plainlinks">[https://mario.fandom.com Super Mario]</span>
* <span class="plainlinks">[https://fallout.fandom.com Fallout]</span>
* <span class="plainlinks">[https://acecombat.fandom.com Acepedia]</span>
* <span class="plainlinks">[https://ageofempires.fandom.com Age of Empires]</span>
* <span class="plainlinks">[https://among-us.fandom.com Among Us]</span>
* <span class="plainlinks">[https://angrybirds.fandom.com Angry Birds]</span>
* <span class="plainlinks">[https://animalcrossing.fandom.com Animal Crossing]</span>
* <span class="plainlinks">[https://anno1800.fandom.com Anno 1800]</span>
* <span class="plainlinks">[https://archero.fandom.com Archero]</span>
* <span class="plainlinks">[https://assassinscreed.fandom.com Assassin's Creed]</span>
* <span class="plainlinks">[https://avengersalliance.fandom.com Marvel Avengers Alliance]</span>
* <span class="plainlinks">[https://baldursgate.fandom.com Baldur's Gate]</span>
* <span class="plainlinks">[https://battleborn.fandom.com Battleborn]</span>
* <span class="plainlinks">[https://battlefield.fandom.com Battlefield]</span>
* <span class="plainlinks">[https://battlefront.fandom.com Star Wars: Battlefront]</span>
* <span class="plainlinks">[https://bioshock.fandom.com BioShock]</span>
* <span class="plainlinks">[https://bloodbrothersgame.fandom.com/wiki/Blood_Brothers_Wiki Blood Brothers]</span>
* <span class="plainlinks">[https://bloodborne.fandom.com Bloodborne]</span>
* <span class="plainlinks">[https://boombeach.fandom.com Boom Beach]</span>
* <span class="plainlinks">[https://borderlands.fandom.com Borderlands]</span>
* <span class="plainlinks">[https://bravefrontierglobal.fandom.com Brave Frontier]</span>
* <span class="plainlinks">[https://brawlstars.fandom.com Brawl Stars]</span>
* <span class="plainlinks">[https://candycrush.fandom.com Candy Crush Saga]</span>
* <span class="plainlinks">[https://castlevania.fandom.com Castlevania]</span>
* <span class="plainlinks">[https://choices-stories-you-play.fandom.com Choices: Stories You Play]</span>
* <span class="plainlinks">[https://civilization.fandom.com Civilization]</span>
* <span class="plainlinks">[https://clashofclans.fandom.com Clash of Clans]</span>
* <span class="plainlinks">[https://clashroyale.fandom.com Clash Royale]</span>
* <span class="plainlinks">[https://clubpenguin.fandom.com Club Penguin]</span>
* <span class="plainlinks">[https://cnc.fandom.com Command & Conquer]</span>
* <span class="plainlinks">[https://www.crashbandicoot.fandom.com Bandipedia]</span>
* <span class="plainlinks">[https://cyberpunk.fandom.com Cyberpunk]</span>
* <span class="plainlinks">[https://danganronpa.fandom.com Danganronpa]</span>
* <span class="plainlinks">[https://darksouls.fandom.com Dark Souls]</span>
* <span class="plainlinks">[https://dow.fandom.com Dawn of War]</span>
* <span class="plainlinks">[https://deadbydaylight.fandom.com Dead by Daylight]</span>
* <span class="plainlinks">[https://deathstranding.fandom.com Death Stranding]</span>
* <span class="plainlinks">[https://destiny.fandom.com Destiny]</span>
* <span class="plainlinks">[https://devilmaycry.fandom.com Devil May Cry]</span>
* <span class="plainlinks">[https://dishonored.fandom.com Dishonored]</span>
* <span class="plainlinks">[https://divinity.fandom.com Divinity]</span>
* <span class="plainlinks">[https://dontstarve.fandom.com Don't Starve]</span>
* <span class="plainlinks">[https://doom.fandom.com Doom]</span>
* <span class="plainlinks">[https://dragonage.fandom.com Dragon Age]</span>
* <span class="plainlinks">[https://dragonquest.fandom.com Dragon Quest]</span>
* <span class="plainlinks">[https://dragon-story.fandom.com Dragon Story]</span>
* <span class="plainlinks">[https://dragonsdogma.fandom.com Dragon's Dogma]</span>
* <span class="plainlinks">[https://dragonvale.fandom.com DragonVale]</span>
* <span class="plainlinks">[https://dyinglight.fandom.com Dying Light]</span>
* <span class="plainlinks">[https://elite-dangerous.fandom.com Elite Dangerous]</span>
* <span class="plainlinks">[https://evolve.fandom.com Evolve]</span>
* <span class="plainlinks">[https://farcry.fandom.com Far Cry]</span>
* <span class="plainlinks">[https://fategrandorder.fandom.com Fate/Grand Order]</span>
* <span class="plainlinks">[https://fifa.fandom.com FIFA]</span>
* <span class="plainlinks">[https://finalfantasy.fandom.com Final Fantasy]</span>
* <span class="plainlinks">[https://fireemblem.fandom.com Fire Emblem]</span>
* <span class="plainlinks">[https://freddy-fazbears-pizza.fandom.com Five Nights at Freddy's]</span>
* <span class="plainlinks">[https://five-nights-at-treasure-island.fandom.com Five Nights at Treasure Island]</span>
* <span class="plainlinks">[https://forhonor.fandom.com For Honor]</span>
* <span class="plainlinks">[https://forgeofempires.fandom.com Forge of Empires]</span>
* <span class="plainlinks">[https://forgottenrealms.fandom.com Forgotten Realms]</span>
* <span class="plainlinks">[https://forza.fandom.com Forza]</span>
* <span class="plainlinks">[https://gearsofwar.fandom.com Gears of War]</span>
* <span class="plainlinks">[https://genshin-impact.fandom.com Genshin Impact]</span>
* <span class="plainlinks">[https://ghostrecon.fandom.com Ghost Recon]</span>
* <span class="plainlinks">[https://godofwar.fandom.com God of War]</span>
* <span class="plainlinks">[https://gran-turismo.fandom.com Gran Turismo]</span>
* <span class="plainlinks">[https://growtopia.fandom.com Growtopia]</span>
* <span class="plainlinks">[https://gta.fandom.com Grand Theft Auto]</span>
* <span class="plainlinks">[https://gwent.fandom.com Gwent: The Witcher Card Game]</span>
* <span class="plainlinks">[https://half-life.fandom.com Half-Life]</span>
* <span class="plainlinks">[https://halo.fandom.com Halo Alpha]</span>
* <span class="plainlinks">[https://harvestmoon.fandom.com Harvest Moon]</span>
* <span class="plainlinks">[https://hayday.fandom.com Hay Day]</span>
* <span class="plainlinks">[https://hearthstone.fandom.com Hearthstone]</span>
* <span class="plainlinks">[https://heroesofthestorm.fandom.com Heroes of the Storm]</span>
* <span class="plainlinks">[https://hitman.fandom.com Hitman]</span>
* <span class="plainlinks">[https://hollowknight.fandom.com Hollow Knight]</span>
* <span class="plainlinks">[https://horizon.fandom.com Horizon Zero Dawn]</span>
* <span class="plainlinks">[https://injustice.fandom.com Injustice: Gods Among Us]</span>
* <span class="plainlinks">[https://jailbreak.fandom.com Jailbreak]</span>
* <span class="plainlinks">[https://jurassicworld-evolution.fandom.com Jurassic World Evolution]</span>
* <span class="plainlinks">[https://justcause.fandom.com Just Cause]</span>
* <span class="plainlinks">[https://justdance.fandom.com Just Dance]</span>
* <span class="plainlinks">[https://kancolle.fandom.com KanColle]</span>
* <span class="plainlinks">[https://kenshi.fandom.com Kenshi]</span>
* <span class="plainlinks">[https://kingdomhearts.fandom.com Kingdom Hearts]</span>
* <span class="plainlinks">[https://kirby.fandom.com Kirby]</span>
* <span class="plainlinks">[https://www.knights-and-dragons.fandom.com Knights and Dragons]</span>
* <span class="plainlinks">[https://last-day-on-earth-survival.fandom.com Last Day on Earth: Survival]</span>
* <span class="plainlinks">[https://life-is-strange.fandom.com Life Is Strange]</span>
* <span class="plainlinks">[https://leagueoflegends.fandom.com League of Legends]</span>
* <span class="plainlinks">[https://lotrminecraftmod.fandom.com The Lord of the Rings Minecraft mod]</span>
* <span class="plainlinks">[https://lumber-tycoon-2.fandom.com Lumber Tycoon 2]</span>
* <span class="plainlinks">[https://mafiagame.fandom.com Mafia]</span>
* <span class="plainlinks">[https://mario.fandom.com MarioWiki]</span>
* <span class="plainlinks">[https://marvels-spider-man.fandom.com Marvel's Spider-Man]</span>
* <span class="plainlinks">[https://masseffect.fandom.com Mass Effect]</span>
* <span class="plainlinks">[https://megaman.fandom.com MMKB]</span>
* <span class="plainlinks">[https://metalgear.fandom.com Metal Gear]</span>
* <span class="plainlinks">[https://metro.fandom.com Metro]</span>
* <span class="plainlinks">[https://mightandmagic.fandom.com Might and Magic]</span>
* <span class="plainlinks">[https://minecraft.fandom.com Minecraft]</span>
* <span class="plainlinks">[https://minecraftstorymode.fandom.com Minecraft: Story Mode]</span>
* <span class="plainlinks">[https://mirrorsedge.fandom.com Mirror's Edge]</span>
* <span class="plainlinks">[https://monsterhunter.fandom.com Monster Hunter]</span>
* <span class="plainlinks">[https://monsterlegends.fandom.com Monster Legends]</span>
* <span class="plainlinks">[https://mortalkombat.fandom.com Mortal Kombat]</span>
* <span class="plainlinks">[https://mountandblade.fandom.com Mount & Blade]</span>
* <span class="plainlinks">[https://mugen.fandom.com MUGEN Database]</span>
* <span class="plainlinks">[https://mysingingmonsters.fandom.com My Singing Monsters]</span>
* <span class="plainlinks">[https://nintendo.fandom.com Nintendo]</span>
* <span class="plainlinks">[https://nomanssky.fandom.com No Man's Sky]</span>
* <span class="plainlinks">[https://octopathtraveler.fandom.com Octopath Traveler]</span>
* <span class="plainlinks">[https://oldschoolrunescape.fandom.com Old School RuneScape]</span>
* <span class="plainlinks">[https://oriandtheblindforest.fandom.com Ori and the Blind Forest]</span>
* <span class="plainlinks">[https://outlast.fandom.com Outlast]</span>
* <span class="plainlinks">[https://payday.fandom.com Payday]</span>
* <span class="plainlinks">[https://pixelgun.fandom.com Pixel Gun]</span>
* <span class="plainlinks">[https://pixelworlds.fandom.com Pixel Worlds]</span>
* <span class="plainlinks">[https://plantsvszombies.fandom.com Plants vs. Zombies]</span>
* <span class="plainlinks">[https://www.pubg.fandom.com PlayerUnknown's Battlegrounds]</span>
* <span class="plainlinks">[https://pad.fandom.com Puzzle & Dragons]</span>
* <span class="plainlinks">[https://rage.fandom.com Rage]</span>
* <span class="plainlinks">[https://rainbowsix.fandom.com Tom Clancy's Rainbow Six]</span>
* <span class="plainlinks">[https://rr3.fandom.com Real Racing 3]</span>
* <span class="plainlinks">[https://rec-room.fandom.com Rec Room]</span>
* <span class="plainlinks">[https://residentevil.fandom.com Resident Evil]</span>
* <span class="plainlinks">[https://romance-club.fandom.com Romance Club - Stories I Play]</span>
* <span class="plainlinks">[https://roosterteeth.fandom.com Rooster Teeth]</span>
* <span class="plainlinks">[https://runescape.fandom.com RuneScape]</span>
* <span class="plainlinks">[https://snk.fandom.com SNK]</span>
* <span class="plainlinks">[https://saintsrow.fandom.com Saints Row]</span>
* <span class="plainlinks">[https://seaofthieves.fandom.com Sea of Thieves]</span>
* <span class="plainlinks">[https://sekiro-shadows-die-twice.fandom.com Sekiro: Shadows Die Twice]</span>
* <span class="plainlinks">[https://shadowofwar.fandom.com Middle-earth: Shadow of Mordor]</span>
* <span class="plainlinks">[https://shantae.fandom.com Shantae]</span>
* <span class="plainlinks">[https://simpsonstappedout.fandom.com The Simpsons: Tapped Out]</span>
* <span class="plainlinks">[https://skyforge.fandom.com Skyforge]</span>
* <span class="plainlinks">[https://skylanders.fandom.com Skylanders]</span>
* <span class="plainlinks">[https://slimerancher.fandom.com Slime Rancher]</span>
* <span class="plainlinks">[https://sonic.fandom.com Sonic News Network]</span>
* <span class="plainlinks">[https://soulcalibur.fandom.com Soulcalibur]</span>
* <span class="plainlinks">[https://soul-knight.fandom.com Soul Knight]</span>
* <span class="plainlinks">[https://splatoon.fandom.com Splatoon]</span>
* <span class="plainlinks">[https://starcitizen.fandom.com Star Citizen]</span>
* <span class="plainlinks">[https://starwarsjedifallenorder.fandom.com Star Wars Jedi: Fallen Order]</span>
* <span class="plainlinks">[https://streetfighter.fandom.com Street Fighter]</span>
* <span class="plainlinks">[https://subnautica.fandom.com Subnautica]</span>
* <span class="plainlinks">[https://summonerswar.fandom.com Summoners War: Sky Arena]</span>
* <span class="plainlinks">[https://supersmashbros.fandom.com Smashpedia]</span>
* <span class="plainlinks">[https://aselia.fandom.com Tales]</span>
* <span class="plainlinks">[https://tekken.fandom.com Tekken]</span>
* <span class="plainlinks">[https://terraria.fandom.com Terraria]</span>
* <span class="plainlinks">[https://bindingofisaac.fandom.com The Binding of Isaac]</span>
* <span class="plainlinks">[https://thedivision.fandom.com Tom Clancy's The Division]</span>
* <span class="plainlinks">[https://theevilwithin.fandom.com/wiki The Evil Within]</span>
* <span class="plainlinks">[https://lastremnant.fandom.com/wiki The Last Remnant]</span>
* <span class="plainlinks">[https://thelastofus.fandom.com The Last of Us]</span>
* <span class="plainlinks">[https://theouterworlds.fandom.com The Outer Worlds]</span>
* <span class="plainlinks">[https://sims.fandom.com The Sims]</span>
* <span class="plainlinks">[https://witcher.fandom.com The Witcher]</span>
* <span class="plainlinks">[https://tibia.fandom.com TibiaWiki]</span>
* <span class="plainlinks">[https://titanfall.fandom.com Titanfall]</span>
* <span class="plainlinks">[https://totalwar.fandom.com Total War]</span>
* <span class="plainlinks">[https://towerofsaviors.fandom.com Tower of Saviors]</span>
* <span class="plainlinks">[https://town-of-salem.fandom.com Town of Salem]</span>
* <span class="plainlinks">[https://typemoon.fandom.com Type-Moon]</span>
* <span class="plainlinks">[https://uncharted.fandom.com Uncharted]</span>
* <span class="plainlinks">[https://valkyriecrusade.fandom.com Valkyrie Cursade]</span>
* <span class="plainlinks">[https://valorant.fandom.com Valorant]</span>
* <span class="plainlinks">[https://vtmb.fandom.com Vampire: The Masquerade β Bloodlines]</span>
* <span class="plainlinks">[https://vivapinata.fandom.com Viva PiΓ±ata]</span>
* <span class="plainlinks">[https://warcommander.fandom.com War Commander]</span>
* <span class="plainlinks">[https://warframe.fandom.com Warframe]</span>
* <span class="plainlinks">[https://warhammer40k.fandom.com Warhammer 40,000]</span>
* <span class="plainlinks">[https://warhammerfantasy.fandom.com Warhammer Fantasy]</span>
* <span class="plainlinks">[https://watchdogs.fandom.com Watch Dogs]</span>
* <span class="plainlinks">[https://wolfenstein.fandom.com Wolfenstein]</span>
* <span class="plainlinks">[https://wowpedia.fandom.com/wiki/Wowpedia Wowpedia]</span>
* <span class="plainlinks">[https://xcom.fandom.com XCOM]</span>
* <span class="plainlinks">[https://xenoblade.fandom.com Xenoblade Chronicles]</span>
* <span class="plainlinks">[https://yakuza.fandom.com Yakuza]</span>
* <span class="plainlinks">[https://yokaiwatch.fandom.com Yo-kai Watch]</span>
* <span class="plainlinks">[https://yooka-laylee.fandom.com Yooka-Laylee]</span>
* <span class="plainlinks">[https://yoshi.fandom.com Yoshi]</span>
| group3 = Movies
| list3 =
* <span class="plainlinks">[https://harrypotter.fandom.com Harry Potter]</span>
* <span class="plainlinks">[https://starwars.fandom.com Wookieepedia]</span>
* <span class="plainlinks">[https://disney.fandom.com Disney]</span>
* <span class="plainlinks">[https://scifi.fandom.com WikiSciFi]</span>
* <span class="plainlinks">[https://marvelcinematicuniverse.fandom.com Marvel Cinematic Universe]</span>
* <span class="plainlinks">[https://dc.fandom.com DC Database]</span>
* <span class="plainlinks">[https://horror.fandom.com Horror Film]</span>
* <span class="plainlinks">[https://marvel.fandom.com Marvel Database]</span>
* <span class="plainlinks">[https://spiderman.fandom.com Spider-Man]</span>
* <span class="plainlinks">[https://avp.fandom.com Xenopedia]</span>
* <span class="plainlinks">[https://artemisfowl.fandom.com Artemis Fowl]</span>
* <span class="plainlinks">[https://barbiemovies.fandom.com Barbie Movies]</span>
* <span class="plainlinks">[https://batman.fandom.com Batman]</span>
* <span class="plainlinks">[https://bourne.fandom.com The Bourne Directory]</span>
* <span class="plainlinks">[https://charliesangels.fandom.com Charlie's Angels]</span>
* <span class="plainlinks">[https://dcextendeduniverse.fandom.com DC Extended Universe]</span>
* <span class="plainlinks">[https://divergent.fandom.com Divergent (film)]</span>
* <span class="plainlinks">[https://ghostbusters.fandom.com Ghostbusters (franchise)]</span>
* <span class="plainlinks">[https://godzilla.fandom.com Gojipedia]</span>
* <span class="plainlinks">[https://howtotrainyourdragon.fandom.com How to Train Your Dragon]</span>
* <span class="plainlinks">[https://thehungergames.fandom.com The Hunger Games (film series)]</span>
| group4 = Anime
| list4 = WIP
| group5 = Everything Else
| list5 = WIP
| below =
* [[wikipedia:Category:Fandom (website)|Category]]
* [[wikipedia:Portal:Games|Portal]]
}}
db7a748118d496c0883180dd399159635f825fd4
23
22
2023-01-24T16:17:09Z
TAPCLAPgamefansince2018
30634029
Saving for now
wikitext
text/x-wiki
{{Navbox
| name = Fandom wikis and communities
| title = [[en:Fandom (website)|Fandom]] wikis and communities
| bodyclass = hlist
| border = {{{1|}}}
| state = {{{state|<noinclude>expanded</noinclude>autocollapse}}}
| group1 = TV
| list1 =
* <span class="plainlinks">[https://thecw.fandom.com The CW]</span>
* <span class="plainlinks">[https://walkingdead.fandom.com Walking Dead]</span>
* <span class="plainlinks">[https://www.tardis.fandom.com Tardis]</span>
* <span class="plainlinks">[https://memory-alpha.fandom.com Memory Alpha]</span>
* <span class="plainlinks">[https://riverdale.fandom.com Archieverse]</span>
* <span class="plainlinks">[https://arrow.fandom.com Arrowverse]</span>
* <span class="plainlinks">[https://gameofthrones.fandom.com Game of Thrones]</span>
* <span class="plainlinks">[https://strangerthings.fandom.com Stranger Things]</span>
* <span class="plainlinks">[https://rickandmorty.fandom.com Rick and Morty]</span>
* <span class="plainlinks">[https://television.fandom.com Television]</span>
* <span class="plainlinks">[https://13reasonswhy.fandom.com 13 Reasons Why]</span>
* <span class="plainlinks">[https://24.fandom.com Wiki 24]</span>
* <span class="plainlinks">[https://amillionlittlethings.fandom.com A Million Little Things]</span>
* <span class="plainlinks">[https://abc.fandom.com ABC]</span>
* <span class="plainlinks">[https://adventuretime.fandom.com Adventure Time]</span>
* <span class="plainlinks">[https://agents-of-mayhem.fandom.com Agents of Mayhem]</span>
* <span class="plainlinks">[https://ajin.fandom.com Ajin]</span>
* <span class="plainlinks">[https://altered-carbon.fandom.com Altered Carbon]</span>
* <span class="plainlinks">[https://americangods.fandom.com American Gods]</span>
* <span class="plainlinks">[https://americanhorrorstory.fandom.com American Horror Story]</span>
* <span class="plainlinks">[https://americanhousewife.fandom.com American Housewife]</span>
* <span class="plainlinks">[https://americanidol.fandom.com American Idol]</span>
* <span class="plainlinks">[https://amphibia.fandom.com Amphibia]</span>
* <span class="plainlinks">[https://archer.fandom.com Archer]</span>
* <span class="plainlinks">[https://avatar.fandom.com Avatar]</span>
* <span class="plainlinks">[https://bachelor-nation.fandom.com Bachelor Nation]</span>
* <span class="plainlinks">[https://bakerstreet.fandom.com Baker Street]</span>
* <span class="plainlinks">[https://battlefordreamisland.fandom.com Battle for Dream Island]</span>
* <span class="plainlinks">[https://beavisandbutthead.fandom.com Beavis and Butt-Head]</span>
* <span class="plainlinks">[https://ben10.fandom.com Ben 10]</span>
* <span class="plainlinks">[https://bigbangtheory.fandom.com The Big Bang Theory]</span>
* <span class="plainlinks">[https://black-mirror.fandom.com Black Mirror]</span>
* <span class="plainlinks">[https://blackish.fandom.com Black-ish]</span>
* <span class="plainlinks">[https://bojackhorseman.fandom.com BoJack Horseman]</span>
* <span class="plainlinks">[https://breakingbad.fandom.com Breaking Bad]</span>
* <span class="plainlinks">[https://buffy.fandom.com Buffyverse]</span>
* <span class="plainlinks">[https://charmed.fandom.com Charmed]</span> π° <span class="plainlinks">[https://charmed-reboot.fandom.com/wiki Charmed (2018)]</span>
* <span class="plainlinks">[https://thekaratekid.fandom.com The Karate Kid]</span>
* <span class="plainlinks">[https://criminalminds.fandom.com Criminal Minds]</span>
* <span class="plainlinks">[https://criticalrole.fandom.com Critical Role]</span>
* <span class="plainlinks">[https://dancemoms.fandom.com Dance Moms]</span>
* <span class="plainlinks">[https://dancingwiththestars.fandom.com Dancing with the Stars]</span>
* <span class="plainlinks">[https://dark-netflix.fandom.com Dark]</span>
* <span class="plainlinks">[https://darkcrystal.fandom.com The Dark Crystal]</span>
* <span class="plainlinks">[https://dawsonscreek.fandom.com Dawson's Creek]</span>
* <span class="plainlinks">[https://degrassi.fandom.com Degrassi]</span>
* <span class="plainlinks">[https://dora.fandom.com Dora the Explorer]</span>
* <span class="plainlinks">[https://downtonabbey.fandom.com Downton Abbey]</span>
* <span class="plainlinks">[https://rupaulsdragrace.fandom.com RuPaul's Drag Race]</span>
* <span class="plainlinks">[https://ducktales.fandom.com DuckTales]</span>
* <span class="plainlinks">[https://eastenders.fandom.com EastEnders]</span>
* <span class="plainlinks">[https://elite-netflix.fandom.com Elite]</span>
* <span class="plainlinks">[https://everythings-gonna-be-okay.fandom.com Everything's Gonna Be Okay]</span>
* <span class="plainlinks">[https://fatethewinxsaga.fandom.com Fate: The Winx Saga]</span>
* <span class="plainlinks">[https://friends.fandom.com Friends]</span>
* <span class="plainlinks">[https://fullhouse.fandom.com Full House]</span>
* <span class="plainlinks">[https://gilmoregirls.fandom.com Gilmore Girls]</span>
* <span class="plainlinks">[https://glee.fandom.com Glee]</span>
* <span class="plainlinks">[https://glitchtale.fandom.com Glitchtale]</span>
* <span class="plainlinks">[https://goodomens.fandom.com Good Omens]</span>
* <span class="plainlinks">[https://goodtrouble.fandom.com Good Trouble]</span>
* <span class="plainlinks">[https://gravityfalls.fandom.com Gravity Falls]</span>
* <span class="plainlinks">[https://greysanatomy.fandom.com Grey's Anatomy]</span>
* <span class="plainlinks">[https://grimm.fandom.com Grimm]</span>
* <span class="plainlinks">[https://hannibal.fandom.com Hannibal]</span>
* <span class="plainlinks">[https://hawaiifiveo.fandom.com Hawaii Five-0]</span>
* <span class="plainlinks">[https://hellskitchen.fandom.com Hell's Kitchen]</span>
* <span class="plainlinks">[https://heroes.fandom.com Heroes]</span>
* <span class="plainlinks">[https://houseofcards.fandom.com House of Cards]</span>
* <span class="plainlinks">[https://iamnotokaywiththis.fandom.com I Am Not Okay with This]</span>
* <span class="plainlinks">[https://killingeve.fandom.com Killing Eve]</span>
* <span class="plainlinks">[https://kingdom-netflix.fandom.com Kingdom]</span>
* <span class="plainlinks">[https://kipo.fandom.com Kipo and the Age of Wonderbeasts]</span>
* <span class="plainlinks">[https://lockekey.fandom.com Locke & Key]</span>
* <span class="plainlinks">[https://lostpedia.fandom.com Lostpedia]</span>
* <span class="plainlinks">[https://lucifer.fandom.com Lucifer]</span>
* <span class="plainlinks">[https://madmen.fandom.com Mad Men]</span>
* <span class="plainlinks">[https://mash.fandom.com M*A*S*H]</span>
* <span class="plainlinks">[https://milomurphyslaw.fandom.com Milo Murphy's Law]</span>
* <span class="plainlinks">[https://mindhunter.fandom.com Mindhunter]</span>
* <span class="plainlinks">[https://miraculousladybug.fandom.com Miraculous Ladybug]</span>
* <span class="plainlinks">[https://modernfamily.fandom.com Modern Family]</span>
* <span class="plainlinks">[https://motherland.fandom.com Motherland: Fort Salem]</span>
* <span class="plainlinks">[https://mlp.fandom.com My Little Pony: Friendship Is Magic]</span>
* <span class="plainlinks">[https://nancydrew.fandom.com Nancy Drew]</span>
* <span class="plainlinks">[https://nos4a2.fandom.com NOS4A2]</span>
* <span class="plainlinks">[https://onceuponatime.fandom.com Once Upon a Time]</span>
* <span class="plainlinks">[https://orange-is-the-new-black.fandom.com Orange Is the New Black]</span>
* <span class="plainlinks">[https://orphanblack.fandom.com Orphan Black]</span>
* <span class="plainlinks">[https://outlander.fandom.com Outlander]</span>
* <span class="plainlinks">[https://parksandrecreation.fandom.com Parks and Recreation]</span>
* <span class="plainlinks">[https://phineasandferb.fandom.com Phineas and Ferb]</span>
* <span class="plainlinks">[https://starzpower.fandom.com Power]</span>
* <span class="plainlinks">[https://powerrangers.fandom.com RangerWiki]</span>
* <span class="plainlinks">[https://preacher.fandom.com Preacher]</span>
* <span class="plainlinks">[https://prettylittleliars.fandom.com Pretty Little Liars]</span>
* <span class="plainlinks">[https://psychusa.fandom.com Psych]</span>
* <span class="plainlinks">[https://regularshow.fandom.com Regular Show]</span>
* <span class="plainlinks">[https://roswell.fandom.com Roswell]</span>
* <span class="plainlinks">[https://sasukepedia.fandom.com Sasuke Ninja Warrior]</span>
* <span class="plainlinks">[https://scandal.fandom.com Scandal]</span>
* <span class="plainlinks">[https://scoobydoo.fandom.com Scoobypedia]</span>
* <span class="plainlinks">[https://scream-queens.fandom.com Scream Queens Wiki]</span>
* <span class="plainlinks">[https://sexeducation.fandom.com Sex Education]</span>
* <span class="plainlinks">[https://she-raandtheprincessesofpower.fandom.com She-Ra and the Princesses of Power]</span>
* <span class="plainlinks">[https://simpsons.fandom.com The Simpsons]</span>
* <span class="plainlinks">[https://siren.fandom.com Siren]</span>
* <span class="plainlinks">[https://snowpiercer.fandom.com Snowpiercer]</span>
* <span class="plainlinks">[https://southpark.fandom.com South Park Archives]</span>
* <span class="plainlinks">[https://spartacus.fandom.com Spartacus]</span>
* <span class="plainlinks">[https://spongebob.fandom.com Encyclopedia SpongeBobia]</span>
* <span class="plainlinks">[https://starwarsresistance.fandom.com Star Wars Resistance]</span>
* <span class="plainlinks">[https://stargate.fandom.com SGCommand]</span>
* <span class="plainlinks">[https://stargirl.fandom.com Stargirl]</span>
* <span class="plainlinks">[https://steven-universe.fandom.com Steven Universe]</span>
* <span class="plainlinks">[https://stumptown.fandom.com Stumptown]</span>
* <span class="plainlinks">[https://supernatural.fandom.com Supernatural]</span>
* <span class="plainlinks">[https://survivor.fandom.com Survivor]</span>
* <span class="plainlinks">[https://ted-lasso.fandom.com Ted Lasso]</span>
* <span class="plainlinks">[https://the100.fandom.com The 100]</span>
* <span class="plainlinks">[https://theamazingworldofgumball.fandom.com The Amazing World of Gumball]</span>
* <span class="plainlinks">[https://theboldtype.fandom.com The Bold Type]</span>
* <span class="plainlinks">[https://the-boys.fandom.com The Boys]</span>
* <span class="plainlinks">[https://thechallenge.fandom.com The Challenge]</span>
* <span class="plainlinks">[https://dragonprince.fandom.com The Dragon Prince]</span>
* <span class="plainlinks">[https://expanse.fandom.com The Expanse]</span>
* <span class="plainlinks">[https://thegoldbergs.fandom.com The Goldbergs π° Schooled]</span>
* <span class="plainlinks">[https://the-good-doctor.fandom.com The Good Doctor]</span>
* <span class="plainlinks">[https://thegoodplace.fandom.com The Good Place]</span>
* <span class="plainlinks">[https://theloudhouse.fandom.com The Loud House Encyclopedia]</span>
* <span class="plainlinks">[https://the-man-in-the-high-castle.fandom.com The Man in the High Castle]</span>
* <span class="plainlinks">[https://muppet.fandom.com The Muppets]</span>
* <span class="plainlinks">[https://theoffice.fandom.com The Office]</span>
* <span class="plainlinks">[https://orville.fandom.com The Orville]</span>
* <span class="plainlinks">[https://yakusokunoneverland.fandom.com The Promised Neverland]</span>
* <span class="plainlinks">[https://the-rookie.fandom.com The Rookie]</span>
* <span class="plainlinks">[https://vampirediaries.fandom.com The Vampire Diaries]</span>
* <span class="plainlinks">[https://westwing.fandom.com The West Wing]</span>
* <span class="plainlinks">[https://ttte.fandom.com Thomas & Friends]</span>
* <span class="plainlinks">[https://transformers.fandom.com Transformers]</span>
* <span class="plainlinks">[https://kimmyschmidt.fandom.com Unbreakable Kimmy Schmidt]</span>
* <span class="plainlinks">[https://vikings.fandom.com Vikings]</span>
* <span class="plainlinks">[https://www.voltron.fandom.com Voltron]</span>
* <span class="plainlinks">[https://westworld.fandom.com Westworld]</span>
* <span class="plainlinks">[https://winx.fandom.com Winx Club]</span>
* <span class="plainlinks">[https://youngjustice.fandom.com Young Justice]</span>
* <span class="plainlinks">[https://youtube.fandom.com Wikitubia]</span>
| group2 = Games
| list2 =
* <span class="plainlinks">[https://playstation.fandom.com PlayStation]</span>
* <span class="plainlinks">[https://xbox.fandom.com Xbox]</span>
* <span class="plainlinks">[https://elderscrolls.fandom.com Elder Scrolls]</span>
* <span class="plainlinks">[https://callofduty.fandom.com Call of Duty]</span>
* <span class="plainlinks">[https://pokemon.fandom.com PokΓ©mon]</span>
* <span class="plainlinks">[https://overwatch.fandom.com Overwatch]</span>
* <span class="plainlinks">[https://zelda.fandom.com The Legend of Zelda]</span>
* <span class="plainlinks">[https://fortnite.fandom.com Fortnite]</span>
* <span class="plainlinks">[https://apexlegends.fandom.com Apex Legends]</span>
* <span class="plainlinks">[https://reddead.fandom.com Red Dead]</span>
* <span class="plainlinks">[https://blizzard.fandom.com Blizzard Entertainment]</span>
* <span class="plainlinks">[https://mario.fandom.com Super Mario]</span>
* <span class="plainlinks">[https://fallout.fandom.com Fallout]</span>
* <span class="plainlinks">[https://acecombat.fandom.com Acepedia]</span>
* <span class="plainlinks">[https://ageofempires.fandom.com Age of Empires]</span>
* <span class="plainlinks">[https://among-us.fandom.com Among Us]</span>
* <span class="plainlinks">[https://angrybirds.fandom.com Angry Birds]</span>
* <span class="plainlinks">[https://animalcrossing.fandom.com Animal Crossing]</span>
* <span class="plainlinks">[https://anno1800.fandom.com Anno 1800]</span>
* <span class="plainlinks">[https://archero.fandom.com Archero]</span>
* <span class="plainlinks">[https://assassinscreed.fandom.com Assassin's Creed]</span>
* <span class="plainlinks">[https://avengersalliance.fandom.com Marvel Avengers Alliance]</span>
* <span class="plainlinks">[https://baldursgate.fandom.com Baldur's Gate]</span>
* <span class="plainlinks">[https://battleborn.fandom.com Battleborn]</span>
* <span class="plainlinks">[https://battlefield.fandom.com Battlefield]</span>
* <span class="plainlinks">[https://battlefront.fandom.com Star Wars: Battlefront]</span>
* <span class="plainlinks">[https://bioshock.fandom.com BioShock]</span>
* <span class="plainlinks">[https://bloodbrothersgame.fandom.com/wiki/Blood_Brothers_Wiki Blood Brothers]</span>
* <span class="plainlinks">[https://bloodborne.fandom.com Bloodborne]</span>
* <span class="plainlinks">[https://boombeach.fandom.com Boom Beach]</span>
* <span class="plainlinks">[https://borderlands.fandom.com Borderlands]</span>
* <span class="plainlinks">[https://bravefrontierglobal.fandom.com Brave Frontier]</span>
* <span class="plainlinks">[https://brawlstars.fandom.com Brawl Stars]</span>
* <span class="plainlinks">[https://candycrush.fandom.com Candy Crush Saga]</span>
* <span class="plainlinks">[https://castlevania.fandom.com Castlevania]</span>
* <span class="plainlinks">[https://choices-stories-you-play.fandom.com Choices: Stories You Play]</span>
* <span class="plainlinks">[https://civilization.fandom.com Civilization]</span>
* <span class="plainlinks">[https://clashofclans.fandom.com Clash of Clans]</span>
* <span class="plainlinks">[https://clashroyale.fandom.com Clash Royale]</span>
* <span class="plainlinks">[https://clubpenguin.fandom.com Club Penguin]</span>
* <span class="plainlinks">[https://cnc.fandom.com Command & Conquer]</span>
* <span class="plainlinks">[https://www.crashbandicoot.fandom.com Bandipedia]</span>
* <span class="plainlinks">[https://cyberpunk.fandom.com Cyberpunk]</span>
* <span class="plainlinks">[https://danganronpa.fandom.com Danganronpa]</span>
* <span class="plainlinks">[https://darksouls.fandom.com Dark Souls]</span>
* <span class="plainlinks">[https://dow.fandom.com Dawn of War]</span>
* <span class="plainlinks">[https://deadbydaylight.fandom.com Dead by Daylight]</span>
* <span class="plainlinks">[https://deathstranding.fandom.com Death Stranding]</span>
* <span class="plainlinks">[https://destiny.fandom.com Destiny]</span>
* <span class="plainlinks">[https://devilmaycry.fandom.com Devil May Cry]</span>
* <span class="plainlinks">[https://dishonored.fandom.com Dishonored]</span>
* <span class="plainlinks">[https://divinity.fandom.com Divinity]</span>
* <span class="plainlinks">[https://dontstarve.fandom.com Don't Starve]</span>
* <span class="plainlinks">[https://doom.fandom.com Doom]</span>
* <span class="plainlinks">[https://dragonage.fandom.com Dragon Age]</span>
* <span class="plainlinks">[https://dragonquest.fandom.com Dragon Quest]</span>
* <span class="plainlinks">[https://dragon-story.fandom.com Dragon Story]</span>
* <span class="plainlinks">[https://dragonsdogma.fandom.com Dragon's Dogma]</span>
* <span class="plainlinks">[https://dragonvale.fandom.com DragonVale]</span>
* <span class="plainlinks">[https://dyinglight.fandom.com Dying Light]</span>
* <span class="plainlinks">[https://elite-dangerous.fandom.com Elite Dangerous]</span>
* <span class="plainlinks">[https://evolve.fandom.com Evolve]</span>
* <span class="plainlinks">[https://farcry.fandom.com Far Cry]</span>
* <span class="plainlinks">[https://fategrandorder.fandom.com Fate/Grand Order]</span>
* <span class="plainlinks">[https://fifa.fandom.com FIFA]</span>
* <span class="plainlinks">[https://finalfantasy.fandom.com Final Fantasy]</span>
* <span class="plainlinks">[https://fireemblem.fandom.com Fire Emblem]</span>
* <span class="plainlinks">[https://freddy-fazbears-pizza.fandom.com Five Nights at Freddy's]</span>
* <span class="plainlinks">[https://five-nights-at-treasure-island.fandom.com Five Nights at Treasure Island]</span>
* <span class="plainlinks">[https://forhonor.fandom.com For Honor]</span>
* <span class="plainlinks">[https://forgeofempires.fandom.com Forge of Empires]</span>
* <span class="plainlinks">[https://forgottenrealms.fandom.com Forgotten Realms]</span>
* <span class="plainlinks">[https://forza.fandom.com Forza]</span>
* <span class="plainlinks">[https://gearsofwar.fandom.com Gears of War]</span>
* <span class="plainlinks">[https://genshin-impact.fandom.com Genshin Impact]</span>
* <span class="plainlinks">[https://ghostrecon.fandom.com Ghost Recon]</span>
* <span class="plainlinks">[https://godofwar.fandom.com God of War]</span>
* <span class="plainlinks">[https://gran-turismo.fandom.com Gran Turismo]</span>
* <span class="plainlinks">[https://growtopia.fandom.com Growtopia]</span>
* <span class="plainlinks">[https://gta.fandom.com Grand Theft Auto]</span>
* <span class="plainlinks">[https://gwent.fandom.com Gwent: The Witcher Card Game]</span>
* <span class="plainlinks">[https://half-life.fandom.com Half-Life]</span>
* <span class="plainlinks">[https://halo.fandom.com Halo Alpha]</span>
* <span class="plainlinks">[https://harvestmoon.fandom.com Harvest Moon]</span>
* <span class="plainlinks">[https://hayday.fandom.com Hay Day]</span>
* <span class="plainlinks">[https://hearthstone.fandom.com Hearthstone]</span>
* <span class="plainlinks">[https://heroesofthestorm.fandom.com Heroes of the Storm]</span>
* <span class="plainlinks">[https://hitman.fandom.com Hitman]</span>
* <span class="plainlinks">[https://hollowknight.fandom.com Hollow Knight]</span>
* <span class="plainlinks">[https://horizon.fandom.com Horizon Zero Dawn]</span>
* <span class="plainlinks">[https://injustice.fandom.com Injustice: Gods Among Us]</span>
* <span class="plainlinks">[https://jailbreak.fandom.com Jailbreak]</span>
* <span class="plainlinks">[https://jurassicworld-evolution.fandom.com Jurassic World Evolution]</span>
* <span class="plainlinks">[https://justcause.fandom.com Just Cause]</span>
* <span class="plainlinks">[https://justdance.fandom.com Just Dance]</span>
* <span class="plainlinks">[https://kancolle.fandom.com KanColle]</span>
* <span class="plainlinks">[https://kenshi.fandom.com Kenshi]</span>
* <span class="plainlinks">[https://kingdomhearts.fandom.com Kingdom Hearts]</span>
* <span class="plainlinks">[https://kirby.fandom.com Kirby]</span>
* <span class="plainlinks">[https://www.knights-and-dragons.fandom.com Knights and Dragons]</span>
* <span class="plainlinks">[https://last-day-on-earth-survival.fandom.com Last Day on Earth: Survival]</span>
* <span class="plainlinks">[https://life-is-strange.fandom.com Life Is Strange]</span>
* <span class="plainlinks">[https://leagueoflegends.fandom.com League of Legends]</span>
* <span class="plainlinks">[https://lotrminecraftmod.fandom.com The Lord of the Rings Minecraft mod]</span>
* <span class="plainlinks">[https://lumber-tycoon-2.fandom.com Lumber Tycoon 2]</span>
* <span class="plainlinks">[https://mafiagame.fandom.com Mafia]</span>
* <span class="plainlinks">[https://mario.fandom.com MarioWiki]</span>
* <span class="plainlinks">[https://marvels-spider-man.fandom.com Marvel's Spider-Man]</span>
* <span class="plainlinks">[https://masseffect.fandom.com Mass Effect]</span>
* <span class="plainlinks">[https://megaman.fandom.com MMKB]</span>
* <span class="plainlinks">[https://metalgear.fandom.com Metal Gear]</span>
* <span class="plainlinks">[https://metro.fandom.com Metro]</span>
* <span class="plainlinks">[https://mightandmagic.fandom.com Might and Magic]</span>
* <span class="plainlinks">[https://minecraft.fandom.com Minecraft]</span>
* <span class="plainlinks">[https://minecraftstorymode.fandom.com Minecraft: Story Mode]</span>
* <span class="plainlinks">[https://mirrorsedge.fandom.com Mirror's Edge]</span>
* <span class="plainlinks">[https://monsterhunter.fandom.com Monster Hunter]</span>
* <span class="plainlinks">[https://monsterlegends.fandom.com Monster Legends]</span>
* <span class="plainlinks">[https://mortalkombat.fandom.com Mortal Kombat]</span>
* <span class="plainlinks">[https://mountandblade.fandom.com Mount & Blade]</span>
* <span class="plainlinks">[https://mugen.fandom.com MUGEN Database]</span>
* <span class="plainlinks">[https://mysingingmonsters.fandom.com My Singing Monsters]</span>
* <span class="plainlinks">[https://nintendo.fandom.com Nintendo]</span>
* <span class="plainlinks">[https://nomanssky.fandom.com No Man's Sky]</span>
* <span class="plainlinks">[https://octopathtraveler.fandom.com Octopath Traveler]</span>
* <span class="plainlinks">[https://oldschoolrunescape.fandom.com Old School RuneScape]</span>
* <span class="plainlinks">[https://oriandtheblindforest.fandom.com Ori and the Blind Forest]</span>
* <span class="plainlinks">[https://outlast.fandom.com Outlast]</span>
* <span class="plainlinks">[https://payday.fandom.com Payday]</span>
* <span class="plainlinks">[https://pixelgun.fandom.com Pixel Gun]</span>
* <span class="plainlinks">[https://pixelworlds.fandom.com Pixel Worlds]</span>
* <span class="plainlinks">[https://plantsvszombies.fandom.com Plants vs. Zombies]</span>
* <span class="plainlinks">[https://www.pubg.fandom.com PlayerUnknown's Battlegrounds]</span>
* <span class="plainlinks">[https://pad.fandom.com Puzzle & Dragons]</span>
* <span class="plainlinks">[https://rage.fandom.com Rage]</span>
* <span class="plainlinks">[https://rainbowsix.fandom.com Tom Clancy's Rainbow Six]</span>
* <span class="plainlinks">[https://rr3.fandom.com Real Racing 3]</span>
* <span class="plainlinks">[https://rec-room.fandom.com Rec Room]</span>
* <span class="plainlinks">[https://residentevil.fandom.com Resident Evil]</span>
* <span class="plainlinks">[https://romance-club.fandom.com Romance Club - Stories I Play]</span>
* <span class="plainlinks">[https://roosterteeth.fandom.com Rooster Teeth]</span>
* <span class="plainlinks">[https://runescape.fandom.com RuneScape]</span>
* <span class="plainlinks">[https://snk.fandom.com SNK]</span>
* <span class="plainlinks">[https://saintsrow.fandom.com Saints Row]</span>
* <span class="plainlinks">[https://seaofthieves.fandom.com Sea of Thieves]</span>
* <span class="plainlinks">[https://sekiro-shadows-die-twice.fandom.com Sekiro: Shadows Die Twice]</span>
* <span class="plainlinks">[https://shadowofwar.fandom.com Middle-earth: Shadow of Mordor]</span>
* <span class="plainlinks">[https://shantae.fandom.com Shantae]</span>
* <span class="plainlinks">[https://simpsonstappedout.fandom.com The Simpsons: Tapped Out]</span>
* <span class="plainlinks">[https://skyforge.fandom.com Skyforge]</span>
* <span class="plainlinks">[https://skylanders.fandom.com Skylanders]</span>
* <span class="plainlinks">[https://slimerancher.fandom.com Slime Rancher]</span>
* <span class="plainlinks">[https://sonic.fandom.com Sonic News Network]</span>
* <span class="plainlinks">[https://soulcalibur.fandom.com Soulcalibur]</span>
* <span class="plainlinks">[https://soul-knight.fandom.com Soul Knight]</span>
* <span class="plainlinks">[https://splatoon.fandom.com Splatoon]</span>
* <span class="plainlinks">[https://starcitizen.fandom.com Star Citizen]</span>
* <span class="plainlinks">[https://starwarsjedifallenorder.fandom.com Star Wars Jedi: Fallen Order]</span>
* <span class="plainlinks">[https://streetfighter.fandom.com Street Fighter]</span>
* <span class="plainlinks">[https://subnautica.fandom.com Subnautica]</span>
* <span class="plainlinks">[https://summonerswar.fandom.com Summoners War: Sky Arena]</span>
* <span class="plainlinks">[https://supersmashbros.fandom.com Smashpedia]</span>
* <span class="plainlinks">[https://aselia.fandom.com Tales]</span>
* <span class="plainlinks">[https://tekken.fandom.com Tekken]</span>
* <span class="plainlinks">[https://terraria.fandom.com Terraria]</span>
* <span class="plainlinks">[https://bindingofisaac.fandom.com The Binding of Isaac]</span>
* <span class="plainlinks">[https://thedivision.fandom.com Tom Clancy's The Division]</span>
* <span class="plainlinks">[https://theevilwithin.fandom.com/wiki The Evil Within]</span>
* <span class="plainlinks">[https://lastremnant.fandom.com/wiki The Last Remnant]</span>
* <span class="plainlinks">[https://thelastofus.fandom.com The Last of Us]</span>
* <span class="plainlinks">[https://theouterworlds.fandom.com The Outer Worlds]</span>
* <span class="plainlinks">[https://sims.fandom.com The Sims]</span>
* <span class="plainlinks">[https://witcher.fandom.com The Witcher]</span>
* <span class="plainlinks">[https://tibia.fandom.com TibiaWiki]</span>
* <span class="plainlinks">[https://titanfall.fandom.com Titanfall]</span>
* <span class="plainlinks">[https://totalwar.fandom.com Total War]</span>
* <span class="plainlinks">[https://towerofsaviors.fandom.com Tower of Saviors]</span>
* <span class="plainlinks">[https://town-of-salem.fandom.com Town of Salem]</span>
* <span class="plainlinks">[https://typemoon.fandom.com Type-Moon]</span>
* <span class="plainlinks">[https://uncharted.fandom.com Uncharted]</span>
* <span class="plainlinks">[https://valkyriecrusade.fandom.com Valkyrie Cursade]</span>
* <span class="plainlinks">[https://valorant.fandom.com Valorant]</span>
* <span class="plainlinks">[https://vtmb.fandom.com Vampire: The Masquerade β Bloodlines]</span>
* <span class="plainlinks">[https://vivapinata.fandom.com Viva PiΓ±ata]</span>
* <span class="plainlinks">[https://warcommander.fandom.com War Commander]</span>
* <span class="plainlinks">[https://warframe.fandom.com Warframe]</span>
* <span class="plainlinks">[https://warhammer40k.fandom.com Warhammer 40,000]</span>
* <span class="plainlinks">[https://warhammerfantasy.fandom.com Warhammer Fantasy]</span>
* <span class="plainlinks">[https://watchdogs.fandom.com Watch Dogs]</span>
* <span class="plainlinks">[https://wolfenstein.fandom.com Wolfenstein]</span>
* <span class="plainlinks">[https://wowpedia.fandom.com/wiki/Wowpedia Wowpedia]</span>
* <span class="plainlinks">[https://xcom.fandom.com XCOM]</span>
* <span class="plainlinks">[https://xenoblade.fandom.com Xenoblade Chronicles]</span>
* <span class="plainlinks">[https://yakuza.fandom.com Yakuza]</span>
* <span class="plainlinks">[https://yokaiwatch.fandom.com Yo-kai Watch]</span>
* <span class="plainlinks">[https://yooka-laylee.fandom.com Yooka-Laylee]</span>
* <span class="plainlinks">[https://yoshi.fandom.com Yoshi]</span>
| group3 = Movies
| list3 =
* <span class="plainlinks">[https://harrypotter.fandom.com Harry Potter]</span>
* <span class="plainlinks">[https://starwars.fandom.com Wookieepedia]</span>
* <span class="plainlinks">[https://disney.fandom.com Disney]</span>
* <span class="plainlinks">[https://scifi.fandom.com WikiSciFi]</span>
* <span class="plainlinks">[https://marvelcinematicuniverse.fandom.com Marvel Cinematic Universe]</span>
* <span class="plainlinks">[https://dc.fandom.com DC Database]</span>
* <span class="plainlinks">[https://horror.fandom.com Horror Film]</span>
* <span class="plainlinks">[https://marvel.fandom.com Marvel Database]</span>
* <span class="plainlinks">[https://spiderman.fandom.com Spider-Man]</span>
* <span class="plainlinks">[https://avp.fandom.com Xenopedia]</span>
* <span class="plainlinks">[https://artemisfowl.fandom.com Artemis Fowl]</span>
* <span class="plainlinks">[https://barbiemovies.fandom.com Barbie Movies]</span>
* <span class="plainlinks">[https://batman.fandom.com Batman]</span>
* <span class="plainlinks">[https://bourne.fandom.com The Bourne Directory]</span>
* <span class="plainlinks">[https://charliesangels.fandom.com Charlie's Angels]</span>
* <span class="plainlinks">[https://dcextendeduniverse.fandom.com DC Extended Universe]</span>
* <span class="plainlinks">[https://divergent.fandom.com Divergent (film)]</span>
* <span class="plainlinks">[https://ghostbusters.fandom.com Ghostbusters (franchise)]</span>
* <span class="plainlinks">[https://godzilla.fandom.com Gojipedia]</span>
* <span class="plainlinks">[https://howtotrainyourdragon.fandom.com How to Train Your Dragon]</span>
* <span class="plainlinks">[https://thehungergames.fandom.com The Hunger Games (film series)]</span>
| group4 = Anime
| list4 =
* <span class="plainlinks">[https://animanga.fandom.com Animanga]</span>
* <span class="plainlinks">[https://naruto.fandom.com Narutopedia]</span>
* <span class="plainlinks">[https://dragonball.fandom.com Dragon Ball]</span>
* <span class="plainlinks">[https://attackontitan.fandom.com Attack on Titan]</span>
* <span class="plainlinks">[https://bleach.fandom.com Bleach]</span>
* <span class="plainlinks">[https://myheroacademia.fandom.com My Hero Academia]</span>
* <span class="plainlinks">[https://buddyfight.fandom.com Future Card Buddyfight]</span>
* <span class="plainlinks">[https://cardfight.fandom.com Cardfight!! Vanguard]</span>
| group5 = Everything Else
| list5 = WIP
| below =
* [[wikipedia:Category:Fandom (website)|Category]]
* [[wikipedia:Portal:Games|Portal]]
}}
7e1cfd0c6963253f9e2966151b6a6a429a4ae913
24
23
2023-01-25T18:39:34Z
TAPCLAPgamefansince2018
30634029
Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaannnnnnnnnnnnnnnnnnnnnnnnnnnnnnd DONE! Still gotta sort out the wiki for dinosaurs tho.
wikitext
text/x-wiki
{{Navbox
| name = Fandom wikis and communities
| title = [[en:Fandom (website)|Fandom]] wikis and communities
| bodyclass = hlist
| border = {{{1|}}}
| state = {{{state|<noinclude>expanded</noinclude>autocollapse}}}
| group1 = TV
| list1 =
* <span class="plainlinks">[https://thecw.fandom.com The CW]</span>
* <span class="plainlinks">[https://walkingdead.fandom.com Walking Dead]</span>
* <span class="plainlinks">[https://www.tardis.fandom.com Tardis]</span>
* <span class="plainlinks">[https://memory-alpha.fandom.com Memory Alpha]</span>
* <span class="plainlinks">[https://riverdale.fandom.com Archieverse]</span>
* <span class="plainlinks">[https://arrow.fandom.com Arrowverse]</span>
* <span class="plainlinks">[https://gameofthrones.fandom.com Game of Thrones]</span>
* <span class="plainlinks">[https://strangerthings.fandom.com Stranger Things]</span>
* <span class="plainlinks">[https://rickandmorty.fandom.com Rick and Morty]</span>
* <span class="plainlinks">[https://television.fandom.com Television]</span>
* <span class="plainlinks">[https://13reasonswhy.fandom.com 13 Reasons Why]</span>
* <span class="plainlinks">[https://24.fandom.com Wiki 24]</span>
* <span class="plainlinks">[https://amillionlittlethings.fandom.com A Million Little Things]</span>
* <span class="plainlinks">[https://abc.fandom.com ABC]</span>
* <span class="plainlinks">[https://adventuretime.fandom.com Adventure Time]</span>
* <span class="plainlinks">[https://agents-of-mayhem.fandom.com Agents of Mayhem]</span>
* <span class="plainlinks">[https://ajin.fandom.com Ajin]</span>
* <span class="plainlinks">[https://altered-carbon.fandom.com Altered Carbon]</span>
* <span class="plainlinks">[https://americangods.fandom.com American Gods]</span>
* <span class="plainlinks">[https://americanhorrorstory.fandom.com American Horror Story]</span>
* <span class="plainlinks">[https://americanhousewife.fandom.com American Housewife]</span>
* <span class="plainlinks">[https://americanidol.fandom.com American Idol]</span>
* <span class="plainlinks">[https://amphibia.fandom.com Amphibia]</span>
* <span class="plainlinks">[https://archer.fandom.com Archer]</span>
* <span class="plainlinks">[https://avatar.fandom.com Avatar]</span>
* <span class="plainlinks">[https://bachelor-nation.fandom.com Bachelor Nation]</span>
* <span class="plainlinks">[https://bakerstreet.fandom.com Baker Street]</span>
* <span class="plainlinks">[https://battlefordreamisland.fandom.com Battle for Dream Island]</span>
* <span class="plainlinks">[https://beavisandbutthead.fandom.com Beavis and Butt-Head]</span>
* <span class="plainlinks">[https://ben10.fandom.com Ben 10]</span>
* <span class="plainlinks">[https://bigbangtheory.fandom.com The Big Bang Theory]</span>
* <span class="plainlinks">[https://black-mirror.fandom.com Black Mirror]</span>
* <span class="plainlinks">[https://blackish.fandom.com Black-ish]</span>
* <span class="plainlinks">[https://bojackhorseman.fandom.com BoJack Horseman]</span>
* <span class="plainlinks">[https://breakingbad.fandom.com Breaking Bad]</span>
* <span class="plainlinks">[https://buffy.fandom.com Buffyverse]</span>
* <span class="plainlinks">[https://charmed.fandom.com Charmed]</span> π° <span class="plainlinks">[https://charmed-reboot.fandom.com/wiki Charmed (2018)]</span>
* <span class="plainlinks">[https://thekaratekid.fandom.com The Karate Kid]</span>
* <span class="plainlinks">[https://criminalminds.fandom.com Criminal Minds]</span>
* <span class="plainlinks">[https://criticalrole.fandom.com Critical Role]</span>
* <span class="plainlinks">[https://dancemoms.fandom.com Dance Moms]</span>
* <span class="plainlinks">[https://dancingwiththestars.fandom.com Dancing with the Stars]</span>
* <span class="plainlinks">[https://dark-netflix.fandom.com Dark]</span>
* <span class="plainlinks">[https://darkcrystal.fandom.com The Dark Crystal]</span>
* <span class="plainlinks">[https://dawsonscreek.fandom.com Dawson's Creek]</span>
* <span class="plainlinks">[https://degrassi.fandom.com Degrassi]</span>
* <span class="plainlinks">[https://dora.fandom.com Dora the Explorer]</span>
* <span class="plainlinks">[https://downtonabbey.fandom.com Downton Abbey]</span>
* <span class="plainlinks">[https://rupaulsdragrace.fandom.com RuPaul's Drag Race]</span>
* <span class="plainlinks">[https://ducktales.fandom.com DuckTales]</span>
* <span class="plainlinks">[https://eastenders.fandom.com EastEnders]</span>
* <span class="plainlinks">[https://elite-netflix.fandom.com Elite]</span>
* <span class="plainlinks">[https://everythings-gonna-be-okay.fandom.com Everything's Gonna Be Okay]</span>
* <span class="plainlinks">[https://fatethewinxsaga.fandom.com Fate: The Winx Saga]</span>
* <span class="plainlinks">[https://friends.fandom.com Friends]</span>
* <span class="plainlinks">[https://fullhouse.fandom.com Full House]</span>
* <span class="plainlinks">[https://gilmoregirls.fandom.com Gilmore Girls]</span>
* <span class="plainlinks">[https://glee.fandom.com Glee]</span>
* <span class="plainlinks">[https://glitchtale.fandom.com Glitchtale]</span>
* <span class="plainlinks">[https://goodomens.fandom.com Good Omens]</span>
* <span class="plainlinks">[https://goodtrouble.fandom.com Good Trouble]</span>
* <span class="plainlinks">[https://gravityfalls.fandom.com Gravity Falls]</span>
* <span class="plainlinks">[https://greysanatomy.fandom.com Grey's Anatomy]</span>
* <span class="plainlinks">[https://grimm.fandom.com Grimm]</span>
* <span class="plainlinks">[https://hannibal.fandom.com Hannibal]</span>
* <span class="plainlinks">[https://hawaiifiveo.fandom.com Hawaii Five-0]</span>
* <span class="plainlinks">[https://hellskitchen.fandom.com Hell's Kitchen]</span>
* <span class="plainlinks">[https://heroes.fandom.com Heroes]</span>
* <span class="plainlinks">[https://houseofcards.fandom.com House of Cards]</span>
* <span class="plainlinks">[https://iamnotokaywiththis.fandom.com I Am Not Okay with This]</span>
* <span class="plainlinks">[https://killingeve.fandom.com Killing Eve]</span>
* <span class="plainlinks">[https://kingdom-netflix.fandom.com Kingdom]</span>
* <span class="plainlinks">[https://kipo.fandom.com Kipo and the Age of Wonderbeasts]</span>
* <span class="plainlinks">[https://lockekey.fandom.com Locke & Key]</span>
* <span class="plainlinks">[https://lostpedia.fandom.com Lostpedia]</span>
* <span class="plainlinks">[https://lucifer.fandom.com Lucifer]</span>
* <span class="plainlinks">[https://madmen.fandom.com Mad Men]</span>
* <span class="plainlinks">[https://mash.fandom.com M*A*S*H]</span>
* <span class="plainlinks">[https://milomurphyslaw.fandom.com Milo Murphy's Law]</span>
* <span class="plainlinks">[https://mindhunter.fandom.com Mindhunter]</span>
* <span class="plainlinks">[https://miraculousladybug.fandom.com Miraculous Ladybug]</span>
* <span class="plainlinks">[https://modernfamily.fandom.com Modern Family]</span>
* <span class="plainlinks">[https://motherland.fandom.com Motherland: Fort Salem]</span>
* <span class="plainlinks">[https://mlp.fandom.com My Little Pony: Friendship Is Magic]</span>
* <span class="plainlinks">[https://nancydrew.fandom.com Nancy Drew]</span>
* <span class="plainlinks">[https://nos4a2.fandom.com NOS4A2]</span>
* <span class="plainlinks">[https://onceuponatime.fandom.com Once Upon a Time]</span>
* <span class="plainlinks">[https://orange-is-the-new-black.fandom.com Orange Is the New Black]</span>
* <span class="plainlinks">[https://orphanblack.fandom.com Orphan Black]</span>
* <span class="plainlinks">[https://outlander.fandom.com Outlander]</span>
* <span class="plainlinks">[https://parksandrecreation.fandom.com Parks and Recreation]</span>
* <span class="plainlinks">[https://phineasandferb.fandom.com Phineas and Ferb]</span>
* <span class="plainlinks">[https://starzpower.fandom.com Power]</span>
* <span class="plainlinks">[https://powerrangers.fandom.com RangerWiki]</span>
* <span class="plainlinks">[https://preacher.fandom.com Preacher]</span>
* <span class="plainlinks">[https://prettylittleliars.fandom.com Pretty Little Liars]</span>
* <span class="plainlinks">[https://psychusa.fandom.com Psych]</span>
* <span class="plainlinks">[https://regularshow.fandom.com Regular Show]</span>
* <span class="plainlinks">[https://roswell.fandom.com Roswell]</span>
* <span class="plainlinks">[https://sasukepedia.fandom.com Sasuke Ninja Warrior]</span>
* <span class="plainlinks">[https://scandal.fandom.com Scandal]</span>
* <span class="plainlinks">[https://scoobydoo.fandom.com Scoobypedia]</span>
* <span class="plainlinks">[https://scream-queens.fandom.com Scream Queens Wiki]</span>
* <span class="plainlinks">[https://sexeducation.fandom.com Sex Education]</span>
* <span class="plainlinks">[https://she-raandtheprincessesofpower.fandom.com She-Ra and the Princesses of Power]</span>
* <span class="plainlinks">[https://simpsons.fandom.com The Simpsons]</span>
* <span class="plainlinks">[https://siren.fandom.com Siren]</span>
* <span class="plainlinks">[https://snowpiercer.fandom.com Snowpiercer]</span>
* <span class="plainlinks">[https://southpark.fandom.com South Park Archives]</span>
* <span class="plainlinks">[https://spartacus.fandom.com Spartacus]</span>
* <span class="plainlinks">[https://spongebob.fandom.com Encyclopedia SpongeBobia]</span>
* <span class="plainlinks">[https://starwarsresistance.fandom.com Star Wars Resistance]</span>
* <span class="plainlinks">[https://stargate.fandom.com SGCommand]</span>
* <span class="plainlinks">[https://stargirl.fandom.com Stargirl]</span>
* <span class="plainlinks">[https://steven-universe.fandom.com Steven Universe]</span>
* <span class="plainlinks">[https://stumptown.fandom.com Stumptown]</span>
* <span class="plainlinks">[https://supernatural.fandom.com Supernatural]</span>
* <span class="plainlinks">[https://survivor.fandom.com Survivor]</span>
* <span class="plainlinks">[https://ted-lasso.fandom.com Ted Lasso]</span>
* <span class="plainlinks">[https://the100.fandom.com The 100]</span>
* <span class="plainlinks">[https://theamazingworldofgumball.fandom.com The Amazing World of Gumball]</span>
* <span class="plainlinks">[https://theboldtype.fandom.com The Bold Type]</span>
* <span class="plainlinks">[https://the-boys.fandom.com The Boys]</span>
* <span class="plainlinks">[https://thechallenge.fandom.com The Challenge]</span>
* <span class="plainlinks">[https://dragonprince.fandom.com The Dragon Prince]</span>
* <span class="plainlinks">[https://expanse.fandom.com The Expanse]</span>
* <span class="plainlinks">[https://thegoldbergs.fandom.com The Goldbergs π° Schooled]</span>
* <span class="plainlinks">[https://the-good-doctor.fandom.com The Good Doctor]</span>
* <span class="plainlinks">[https://thegoodplace.fandom.com The Good Place]</span>
* <span class="plainlinks">[https://theloudhouse.fandom.com The Loud House Encyclopedia]</span>
* <span class="plainlinks">[https://the-man-in-the-high-castle.fandom.com The Man in the High Castle]</span>
* <span class="plainlinks">[https://muppet.fandom.com The Muppets]</span>
* <span class="plainlinks">[https://theoffice.fandom.com The Office]</span>
* <span class="plainlinks">[https://orville.fandom.com The Orville]</span>
* <span class="plainlinks">[https://yakusokunoneverland.fandom.com The Promised Neverland]</span>
* <span class="plainlinks">[https://the-rookie.fandom.com The Rookie]</span>
* <span class="plainlinks">[https://vampirediaries.fandom.com The Vampire Diaries]</span>
* <span class="plainlinks">[https://westwing.fandom.com The West Wing]</span>
* <span class="plainlinks">[https://ttte.fandom.com Thomas & Friends]</span>
* <span class="plainlinks">[https://transformers.fandom.com Transformers]</span>
* <span class="plainlinks">[https://kimmyschmidt.fandom.com Unbreakable Kimmy Schmidt]</span>
* <span class="plainlinks">[https://vikings.fandom.com Vikings]</span>
* <span class="plainlinks">[https://www.voltron.fandom.com Voltron]</span>
* <span class="plainlinks">[https://westworld.fandom.com Westworld]</span>
* <span class="plainlinks">[https://winx.fandom.com Winx Club]</span>
* <span class="plainlinks">[https://youngjustice.fandom.com Young Justice]</span>
* <span class="plainlinks">[https://youtube.fandom.com Wikitubia]</span>
| group2 = Games
| list2 =
* <span class="plainlinks">[https://playstation.fandom.com PlayStation]</span>
* <span class="plainlinks">[https://xbox.fandom.com Xbox]</span>
* <span class="plainlinks">[https://elderscrolls.fandom.com Elder Scrolls]</span>
* <span class="plainlinks">[https://callofduty.fandom.com Call of Duty]</span>
* <span class="plainlinks">[https://pokemon.fandom.com PokΓ©mon]</span>
* <span class="plainlinks">[https://overwatch.fandom.com Overwatch]</span>
* <span class="plainlinks">[https://zelda.fandom.com The Legend of Zelda]</span>
* <span class="plainlinks">[https://fortnite.fandom.com Fortnite]</span>
* <span class="plainlinks">[https://apexlegends.fandom.com Apex Legends]</span>
* <span class="plainlinks">[https://reddead.fandom.com Red Dead]</span>
* <span class="plainlinks">[https://blizzard.fandom.com Blizzard Entertainment]</span>
* <span class="plainlinks">[https://mario.fandom.com Super Mario]</span>
* <span class="plainlinks">[https://fallout.fandom.com Fallout]</span>
* <span class="plainlinks">[https://acecombat.fandom.com Acepedia]</span>
* <span class="plainlinks">[https://ageofempires.fandom.com Age of Empires]</span>
* <span class="plainlinks">[https://among-us.fandom.com Among Us]</span>
* <span class="plainlinks">[https://angrybirds.fandom.com Angry Birds]</span>
* <span class="plainlinks">[https://animalcrossing.fandom.com Animal Crossing]</span>
* <span class="plainlinks">[https://anno1800.fandom.com Anno 1800]</span>
* <span class="plainlinks">[https://archero.fandom.com Archero]</span>
* <span class="plainlinks">[https://assassinscreed.fandom.com Assassin's Creed]</span>
* <span class="plainlinks">[https://avengersalliance.fandom.com Marvel Avengers Alliance]</span>
* <span class="plainlinks">[https://baldursgate.fandom.com Baldur's Gate]</span>
* <span class="plainlinks">[https://battleborn.fandom.com Battleborn]</span>
* <span class="plainlinks">[https://battlefield.fandom.com Battlefield]</span>
* <span class="plainlinks">[https://battlefront.fandom.com Star Wars: Battlefront]</span>
* <span class="plainlinks">[https://bioshock.fandom.com BioShock]</span>
* <span class="plainlinks">[https://bloodbrothersgame.fandom.com/wiki/Blood_Brothers_Wiki Blood Brothers]</span>
* <span class="plainlinks">[https://bloodborne.fandom.com Bloodborne]</span>
* <span class="plainlinks">[https://boombeach.fandom.com Boom Beach]</span>
* <span class="plainlinks">[https://borderlands.fandom.com Borderlands]</span>
* <span class="plainlinks">[https://bravefrontierglobal.fandom.com Brave Frontier]</span>
* <span class="plainlinks">[https://brawlstars.fandom.com Brawl Stars]</span>
* <span class="plainlinks">[https://candycrush.fandom.com Candy Crush Saga]</span>
* <span class="plainlinks">[https://castlevania.fandom.com Castlevania]</span>
* <span class="plainlinks">[https://choices-stories-you-play.fandom.com Choices: Stories You Play]</span>
* <span class="plainlinks">[https://civilization.fandom.com Civilization]</span>
* <span class="plainlinks">[https://clashofclans.fandom.com Clash of Clans]</span>
* <span class="plainlinks">[https://clashroyale.fandom.com Clash Royale]</span>
* <span class="plainlinks">[https://clubpenguin.fandom.com Club Penguin]</span>
* <span class="plainlinks">[https://cnc.fandom.com Command & Conquer]</span>
* <span class="plainlinks">[https://www.crashbandicoot.fandom.com Bandipedia]</span>
* <span class="plainlinks">[https://cyberpunk.fandom.com Cyberpunk]</span>
* <span class="plainlinks">[https://danganronpa.fandom.com Danganronpa]</span>
* <span class="plainlinks">[https://darksouls.fandom.com Dark Souls]</span>
* <span class="plainlinks">[https://dow.fandom.com Dawn of War]</span>
* <span class="plainlinks">[https://deadbydaylight.fandom.com Dead by Daylight]</span>
* <span class="plainlinks">[https://deathstranding.fandom.com Death Stranding]</span>
* <span class="plainlinks">[https://destiny.fandom.com Destiny]</span>
* <span class="plainlinks">[https://devilmaycry.fandom.com Devil May Cry]</span>
* <span class="plainlinks">[https://dishonored.fandom.com Dishonored]</span>
* <span class="plainlinks">[https://divinity.fandom.com Divinity]</span>
* <span class="plainlinks">[https://dontstarve.fandom.com Don't Starve]</span>
* <span class="plainlinks">[https://doom.fandom.com Doom]</span>
* <span class="plainlinks">[https://dragonage.fandom.com Dragon Age]</span>
* <span class="plainlinks">[https://dragonquest.fandom.com Dragon Quest]</span>
* <span class="plainlinks">[https://dragon-story.fandom.com Dragon Story]</span>
* <span class="plainlinks">[https://dragonsdogma.fandom.com Dragon's Dogma]</span>
* <span class="plainlinks">[https://dragonvale.fandom.com DragonVale]</span>
* <span class="plainlinks">[https://dyinglight.fandom.com Dying Light]</span>
* <span class="plainlinks">[https://elite-dangerous.fandom.com Elite Dangerous]</span>
* <span class="plainlinks">[https://evolve.fandom.com Evolve]</span>
* <span class="plainlinks">[https://farcry.fandom.com Far Cry]</span>
* <span class="plainlinks">[https://fategrandorder.fandom.com Fate/Grand Order]</span>
* <span class="plainlinks">[https://fifa.fandom.com FIFA]</span>
* <span class="plainlinks">[https://finalfantasy.fandom.com Final Fantasy]</span>
* <span class="plainlinks">[https://fireemblem.fandom.com Fire Emblem]</span>
* <span class="plainlinks">[https://freddy-fazbears-pizza.fandom.com Five Nights at Freddy's]</span>
* <span class="plainlinks">[https://five-nights-at-treasure-island.fandom.com Five Nights at Treasure Island]</span>
* <span class="plainlinks">[https://forhonor.fandom.com For Honor]</span>
* <span class="plainlinks">[https://forgeofempires.fandom.com Forge of Empires]</span>
* <span class="plainlinks">[https://forgottenrealms.fandom.com Forgotten Realms]</span>
* <span class="plainlinks">[https://forza.fandom.com Forza]</span>
* <span class="plainlinks">[https://gearsofwar.fandom.com Gears of War]</span>
* <span class="plainlinks">[https://genshin-impact.fandom.com Genshin Impact]</span>
* <span class="plainlinks">[https://ghostrecon.fandom.com Ghost Recon]</span>
* <span class="plainlinks">[https://godofwar.fandom.com God of War]</span>
* <span class="plainlinks">[https://gran-turismo.fandom.com Gran Turismo]</span>
* <span class="plainlinks">[https://growtopia.fandom.com Growtopia]</span>
* <span class="plainlinks">[https://gta.fandom.com Grand Theft Auto]</span>
* <span class="plainlinks">[https://gwent.fandom.com Gwent: The Witcher Card Game]</span>
* <span class="plainlinks">[https://half-life.fandom.com Half-Life]</span>
* <span class="plainlinks">[https://halo.fandom.com Halo Alpha]</span>
* <span class="plainlinks">[https://harvestmoon.fandom.com Harvest Moon]</span>
* <span class="plainlinks">[https://hayday.fandom.com Hay Day]</span>
* <span class="plainlinks">[https://hearthstone.fandom.com Hearthstone]</span>
* <span class="plainlinks">[https://heroesofthestorm.fandom.com Heroes of the Storm]</span>
* <span class="plainlinks">[https://hitman.fandom.com Hitman]</span>
* <span class="plainlinks">[https://hollowknight.fandom.com Hollow Knight]</span>
* <span class="plainlinks">[https://horizon.fandom.com Horizon Zero Dawn]</span>
* <span class="plainlinks">[https://injustice.fandom.com Injustice: Gods Among Us]</span>
* <span class="plainlinks">[https://jailbreak.fandom.com Jailbreak]</span>
* <span class="plainlinks">[https://jurassicworld-evolution.fandom.com Jurassic World Evolution]</span>
* <span class="plainlinks">[https://justcause.fandom.com Just Cause]</span>
* <span class="plainlinks">[https://justdance.fandom.com Just Dance]</span>
* <span class="plainlinks">[https://kancolle.fandom.com KanColle]</span>
* <span class="plainlinks">[https://kenshi.fandom.com Kenshi]</span>
* <span class="plainlinks">[https://kingdomhearts.fandom.com Kingdom Hearts]</span>
* <span class="plainlinks">[https://kirby.fandom.com Kirby]</span>
* <span class="plainlinks">[https://www.knights-and-dragons.fandom.com Knights and Dragons]</span>
* <span class="plainlinks">[https://last-day-on-earth-survival.fandom.com Last Day on Earth: Survival]</span>
* <span class="plainlinks">[https://life-is-strange.fandom.com Life Is Strange]</span>
* <span class="plainlinks">[https://leagueoflegends.fandom.com League of Legends]</span>
* <span class="plainlinks">[https://lotrminecraftmod.fandom.com The Lord of the Rings Minecraft mod]</span>
* <span class="plainlinks">[https://lumber-tycoon-2.fandom.com Lumber Tycoon 2]</span>
* <span class="plainlinks">[https://mafiagame.fandom.com Mafia]</span>
* <span class="plainlinks">[https://mario.fandom.com MarioWiki]</span>
* <span class="plainlinks">[https://marvels-spider-man.fandom.com Marvel's Spider-Man]</span>
* <span class="plainlinks">[https://masseffect.fandom.com Mass Effect]</span>
* <span class="plainlinks">[https://megaman.fandom.com MMKB]</span>
* <span class="plainlinks">[https://metalgear.fandom.com Metal Gear]</span>
* <span class="plainlinks">[https://metro.fandom.com Metro]</span>
* <span class="plainlinks">[https://mightandmagic.fandom.com Might and Magic]</span>
* <span class="plainlinks">[https://minecraft.fandom.com Minecraft]</span>
* <span class="plainlinks">[https://minecraftstorymode.fandom.com Minecraft: Story Mode]</span>
* <span class="plainlinks">[https://mirrorsedge.fandom.com Mirror's Edge]</span>
* <span class="plainlinks">[https://monsterhunter.fandom.com Monster Hunter]</span>
* <span class="plainlinks">[https://monsterlegends.fandom.com Monster Legends]</span>
* <span class="plainlinks">[https://mortalkombat.fandom.com Mortal Kombat]</span>
* <span class="plainlinks">[https://mountandblade.fandom.com Mount & Blade]</span>
* <span class="plainlinks">[https://mugen.fandom.com MUGEN Database]</span>
* <span class="plainlinks">[https://mysingingmonsters.fandom.com My Singing Monsters]</span>
* <span class="plainlinks">[https://nintendo.fandom.com Nintendo]</span>
* <span class="plainlinks">[https://nomanssky.fandom.com No Man's Sky]</span>
* <span class="plainlinks">[https://octopathtraveler.fandom.com Octopath Traveler]</span>
* <span class="plainlinks">[https://oldschoolrunescape.fandom.com Old School RuneScape]</span>
* <span class="plainlinks">[https://oriandtheblindforest.fandom.com Ori and the Blind Forest]</span>
* <span class="plainlinks">[https://outlast.fandom.com Outlast]</span>
* <span class="plainlinks">[https://payday.fandom.com Payday]</span>
* <span class="plainlinks">[https://pixelgun.fandom.com Pixel Gun]</span>
* <span class="plainlinks">[https://pixelworlds.fandom.com Pixel Worlds]</span>
* <span class="plainlinks">[https://plantsvszombies.fandom.com Plants vs. Zombies]</span>
* <span class="plainlinks">[https://www.pubg.fandom.com PlayerUnknown's Battlegrounds]</span>
* <span class="plainlinks">[https://pad.fandom.com Puzzle & Dragons]</span>
* <span class="plainlinks">[https://rage.fandom.com Rage]</span>
* <span class="plainlinks">[https://rainbowsix.fandom.com Tom Clancy's Rainbow Six]</span>
* <span class="plainlinks">[https://rr3.fandom.com Real Racing 3]</span>
* <span class="plainlinks">[https://rec-room.fandom.com Rec Room]</span>
* <span class="plainlinks">[https://residentevil.fandom.com Resident Evil]</span>
* <span class="plainlinks">[https://romance-club.fandom.com Romance Club - Stories I Play]</span>
* <span class="plainlinks">[https://roosterteeth.fandom.com Rooster Teeth]</span>
* <span class="plainlinks">[https://runescape.fandom.com RuneScape]</span>
* <span class="plainlinks">[https://snk.fandom.com SNK]</span>
* <span class="plainlinks">[https://saintsrow.fandom.com Saints Row]</span>
* <span class="plainlinks">[https://seaofthieves.fandom.com Sea of Thieves]</span>
* <span class="plainlinks">[https://sekiro-shadows-die-twice.fandom.com Sekiro: Shadows Die Twice]</span>
* <span class="plainlinks">[https://shadowofwar.fandom.com Middle-earth: Shadow of Mordor]</span>
* <span class="plainlinks">[https://shantae.fandom.com Shantae]</span>
* <span class="plainlinks">[https://simpsonstappedout.fandom.com The Simpsons: Tapped Out]</span>
* <span class="plainlinks">[https://skyforge.fandom.com Skyforge]</span>
* <span class="plainlinks">[https://skylanders.fandom.com Skylanders]</span>
* <span class="plainlinks">[https://slimerancher.fandom.com Slime Rancher]</span>
* <span class="plainlinks">[https://sonic.fandom.com Sonic News Network]</span>
* <span class="plainlinks">[https://soulcalibur.fandom.com Soulcalibur]</span>
* <span class="plainlinks">[https://soul-knight.fandom.com Soul Knight]</span>
* <span class="plainlinks">[https://splatoon.fandom.com Splatoon]</span>
* <span class="plainlinks">[https://starcitizen.fandom.com Star Citizen]</span>
* <span class="plainlinks">[https://starwarsjedifallenorder.fandom.com Star Wars Jedi: Fallen Order]</span>
* <span class="plainlinks">[https://streetfighter.fandom.com Street Fighter]</span>
* <span class="plainlinks">[https://subnautica.fandom.com Subnautica]</span>
* <span class="plainlinks">[https://summonerswar.fandom.com Summoners War: Sky Arena]</span>
* <span class="plainlinks">[https://supersmashbros.fandom.com Smashpedia]</span>
* <span class="plainlinks">[https://aselia.fandom.com Tales]</span>
* <span class="plainlinks">[https://tekken.fandom.com Tekken]</span>
* <span class="plainlinks">[https://terraria.fandom.com Terraria]</span>
* <span class="plainlinks">[https://bindingofisaac.fandom.com The Binding of Isaac]</span>
* <span class="plainlinks">[https://thedivision.fandom.com Tom Clancy's The Division]</span>
* <span class="plainlinks">[https://theevilwithin.fandom.com/wiki The Evil Within]</span>
* <span class="plainlinks">[https://lastremnant.fandom.com/wiki The Last Remnant]</span>
* <span class="plainlinks">[https://thelastofus.fandom.com The Last of Us]</span>
* <span class="plainlinks">[https://theouterworlds.fandom.com The Outer Worlds]</span>
* <span class="plainlinks">[https://sims.fandom.com The Sims]</span>
* <span class="plainlinks">[https://witcher.fandom.com The Witcher]</span>
* <span class="plainlinks">[https://tibia.fandom.com TibiaWiki]</span>
* <span class="plainlinks">[https://titanfall.fandom.com Titanfall]</span>
* <span class="plainlinks">[https://totalwar.fandom.com Total War]</span>
* <span class="plainlinks">[https://towerofsaviors.fandom.com Tower of Saviors]</span>
* <span class="plainlinks">[https://town-of-salem.fandom.com Town of Salem]</span>
* <span class="plainlinks">[https://typemoon.fandom.com Type-Moon]</span>
* <span class="plainlinks">[https://uncharted.fandom.com Uncharted]</span>
* <span class="plainlinks">[https://valkyriecrusade.fandom.com Valkyrie Cursade]</span>
* <span class="plainlinks">[https://valorant.fandom.com Valorant]</span>
* <span class="plainlinks">[https://vtmb.fandom.com Vampire: The Masquerade β Bloodlines]</span>
* <span class="plainlinks">[https://vivapinata.fandom.com Viva PiΓ±ata]</span>
* <span class="plainlinks">[https://warcommander.fandom.com War Commander]</span>
* <span class="plainlinks">[https://warframe.fandom.com Warframe]</span>
* <span class="plainlinks">[https://warhammer40k.fandom.com Warhammer 40,000]</span>
* <span class="plainlinks">[https://warhammerfantasy.fandom.com Warhammer Fantasy]</span>
* <span class="plainlinks">[https://watchdogs.fandom.com Watch Dogs]</span>
* <span class="plainlinks">[https://wolfenstein.fandom.com Wolfenstein]</span>
* <span class="plainlinks">[https://wowpedia.fandom.com/wiki/Wowpedia Wowpedia]</span>
* <span class="plainlinks">[https://xcom.fandom.com XCOM]</span>
* <span class="plainlinks">[https://xenoblade.fandom.com Xenoblade Chronicles]</span>
* <span class="plainlinks">[https://yakuza.fandom.com Yakuza]</span>
* <span class="plainlinks">[https://yokaiwatch.fandom.com Yo-kai Watch]</span>
* <span class="plainlinks">[https://yooka-laylee.fandom.com Yooka-Laylee]</span>
* <span class="plainlinks">[https://yoshi.fandom.com Yoshi]</span>
| group3 = Movies
| list3 =
* <span class="plainlinks">[https://harrypotter.fandom.com Harry Potter]</span>
* <span class="plainlinks">[https://starwars.fandom.com Wookieepedia]</span>
* <span class="plainlinks">[https://disney.fandom.com Disney]</span>
* <span class="plainlinks">[https://scifi.fandom.com WikiSciFi]</span>
* <span class="plainlinks">[https://marvelcinematicuniverse.fandom.com Marvel Cinematic Universe]</span>
* <span class="plainlinks">[https://dc.fandom.com DC Database]</span>
* <span class="plainlinks">[https://horror.fandom.com Horror Film]</span>
* <span class="plainlinks">[https://marvel.fandom.com Marvel Database]</span>
* <span class="plainlinks">[https://spiderman.fandom.com Spider-Man]</span>
* <span class="plainlinks">[https://avp.fandom.com Xenopedia]</span>
* <span class="plainlinks">[https://artemisfowl.fandom.com Artemis Fowl]</span>
* <span class="plainlinks">[https://barbiemovies.fandom.com Barbie Movies]</span>
* <span class="plainlinks">[https://batman.fandom.com Batman]</span>
* <span class="plainlinks">[https://bourne.fandom.com The Bourne Directory]</span>
* <span class="plainlinks">[https://charliesangels.fandom.com Charlie's Angels]</span>
* <span class="plainlinks">[https://dcextendeduniverse.fandom.com DC Extended Universe]</span>
* <span class="plainlinks">[https://divergent.fandom.com Divergent (film)]</span>
* <span class="plainlinks">[https://ghostbusters.fandom.com Ghostbusters (franchise)]</span>
* <span class="plainlinks">[https://godzilla.fandom.com Gojipedia]</span>
* <span class="plainlinks">[https://howtotrainyourdragon.fandom.com How to Train Your Dragon]</span>
* <span class="plainlinks">[https://thehungergames.fandom.com The Hunger Games (film series)]</span>
| group4 = Anime
| list4 =
* <span class="plainlinks">[https://animanga.fandom.com Animanga]</span>
* <span class="plainlinks">[https://naruto.fandom.com Narutopedia]</span>
* <span class="plainlinks">[https://dragonball.fandom.com Dragon Ball]</span>
* <span class="plainlinks">[https://attackontitan.fandom.com Attack on Titan]</span>
* <span class="plainlinks">[https://bleach.fandom.com Bleach]</span>
* <span class="plainlinks">[https://myheroacademia.fandom.com My Hero Academia]</span>
* <span class="plainlinks">[https://buddyfight.fandom.com Future Card Buddyfight]</span>
* <span class="plainlinks">[https://cardfight.fandom.com Cardfight!! Vanguard]</span>
* <span class="plainlinks">[https://codegeass.fandom.com Code Geass]</span>
* <span class="plainlinks">[https://digimon.fandom.com Digimon]</span>
* <span class="plainlinks">[https://dbz-dokkanbattle.fandom.com Dragon Ball Z: Dokkan Battle]</span>
* <span class="plainlinks">[https://evangelion.fandom.com Evangelion]</span>
* <span class="plainlinks">[https://fairytail.fandom.com Fairy Tail]</span>
* <span class="plainlinks">[https://modao-zushi.fandom.com Mo Dao Zu Shi]</span>
* <span class="plainlinks">[https://gundam.fandom.com Gundam]</span>
* <span class="plainlinks">[https://jojo.fandom.com JoJo's Bizarre Adventure]</span>
* <span class="plainlinks">[https://kimetsu-no-yaiba.fandom.com Demon Slayer: Kimetsu no Yaiba]</span>
* <span class="plainlinks">[https://love-live.fandom.com Love Live!]</span>
* <span class="plainlinks">[https://onepiece.fandom.com One Piece]</span>
* <span class="plainlinks">[https://onepunchman.fandom.com One-Punch Man]</span>
* <span class="plainlinks">[https://overlordmaruyama.fandom.com Overlord]</span>
* <span class="plainlinks">[https://prettycure.fandom.com Pretty Cure]</span>
* <span class="plainlinks">[https://princess-connect.fandom.com Princess Connect! Re:Dive]</span>
* <span class="plainlinks">[https://psychopass.fandom.com Psycho-Pass]</span>
* <span class="plainlinks">[https://rezero.fandom.com Re:Zero]</span>
* <span class="plainlinks">[https://sailormoon.fandom.com Sailor Moon]</span>
* <span class="plainlinks">[https://owarinoseraph.fandom.com Seraph of the End]</span>
* <span class="plainlinks">[https://nanatsu-no-taizai.fandom.com Seven Deadly Sins]</span>
* <span class="plainlinks">[https://megamitensei.fandom.com Shin Megami Tensei]</span>
* <span class="plainlinks">[https://kumodesu.fandom.com So I'm a Spider, So What?]</span>
* <span class="plainlinks">[https://souleater.fandom.com Soul Eater]</span>
* <span class="plainlinks">[https://swordartonline.fandom.com Sword Art Online]</span>
* <span class="plainlinks">[https://tensura.fandom.com That Time I Got Reincarnated as a Slime]</span>
* <span class="plainlinks">[https://shield-hero.fandom.com The Rising of the Shield Hero]</span>
* <span class="plainlinks">[https://tokyoghoul.fandom.com Tokyo Ghoul]</span>
* <span class="plainlinks">[https://yugioh.fandom.com Yu-Gi-Oh!]</span>
| group5 = Everything Else
| list5 =
* <span class="plainlinks">[https://comics.fandom.com Comic Book Series]</span>
* <span class="plainlinks">[https://beer.fandom.com Beer Wiki]</span>
* <span class="plainlinks">[https://beyblade.fandom.com Beyblade Wiki]</span>
* <span class="plainlinks">[https://camerapedia.fandom.com Camerapedia]</span>
* <span class="plainlinks">[https://automobile.fandom.com Autopedia]</span>
* <span class="plainlinks">[https://cocktails.fandom.com Cocktails Wiki]</span>
* <span class="plainlinks">[https://creepypasta.fandom.com Creepypasta Wiki]</span>
* <span class="plainlinks">[https://dinopedia.fandom.com Dinopedia]</span>
* <span class="plainlinks">[https://dresdenfiles.fandom.com Dresden Files]</span>
* <span class="plainlinks">[https://dune.fandom.com Dune Wiki]</span>
* <span class="plainlinks">[https://hazbinhotel.fandom.com Hazbin Hotel Wiki]</span>
* <span class="plainlinks">[https://hero.fandom.com Heroes Wiki]</span>
* <span class="plainlinks">[https://hisdarkmaterials.fandom.com His Dark Materials]</span>
* <span class="plainlinks">[https://hotwheels.fandom.com Hot Wheels Wiki]</span>
* <span class="plainlinks">[https://inheritance.fandom.com Inheriwiki]</span>
* <span class="plainlinks">[https://kpop.fandom.com Kpop Wiki]</span>
* <span class="plainlinks">[https://sidonia-no-kishi.fandom.com Sidonia no Kishi Wiki]</span>
* <span class="plainlinks">[https://brickipedia.fandom.com Brickipedia]</span>
* <span class="plainlinks">[https://ladygaga.fandom.com Gagapedia]</span>
* <span class="plainlinks">[https://logos.fandom.com Logopedia]</span>
* <span class="plainlinks">[https://dune.fandom.com Dune Wiki]</span>
* <span class="plainlinks">[https://melanie-martinez.fandom.com Melanie Martinez Wiki]</span>
* <span class="plainlinks">[https://nerf.fandom.com Nerf Wiki]</span>
* <span class="plainlinks">[https://nickiminaj.fandom.com Nicki Minaj Wiki]</span>
* <span class="plainlinks">[https://onedirection.fandom.com One Direction Wiki]</span>
* <span class="plainlinks">[https://poppy.fandom.com Poppy Wiki]</span>
* <span class="plainlinks">[https://powerlisting.fandom.com Superpower Wiki]</span>
* <span class="plainlinks">[https://prowrestling.fandom.com Pro Wrestling]</span>
* <span class="plainlinks">[https://recipes.fandom.com Recipes Wiki]</span>
* <span class="plainlinks">[https://shadowhunters.fandom.com The Shadowhunters' Wiki]</span>
* <span class="plainlinks">[https://shipping.fandom.com Shipping Wiki]</span>
* <span class="plainlinks">[https://stephenking.fandom.com Stephen King Wiki]</span>
* <span class="plainlinks">[https://taylorswift.fandom.com Taylor Swift Wiki]</span>
* <span class="plainlinks">[https://beatles.fandom.com The Beatles Wiki]</span>
* <span class="plainlinks">[https://kagerouproject.fandom.com Kagerou Project Wiki]</span>
* <span class="plainlinks">[https://wiggles.fandom.com Wigglepedia]</span>
* <span class="plainlinks">[https://throneofglass.fandom.com Throne of Glass Wiki]</span>
* <span class="plainlinks">[https://utaite.fandom.com Utaite Wiki]</span>
* <span class="plainlinks">[https://vsbattles.fandom.com VS Battles Wiki]</span>
* <span class="plainlinks">[https://valiant.fandom.com Valiant Comics Database]</span>
* <span class="plainlinks">[https://villains.fandom.com Villains Wiki]</span>
* <span class="plainlinks">[https://vintagepatterns.fandom.com Vintage Sewing Patterns]</span>
* <span class="plainlinks">[https://vocaloid.fandom.com Vocaloid Wiki]</span>
* <span class="plainlinks">[https://warriors.fandom.com Warriors Wiki]</span>
* <span class="plainlinks">[https://watchmen.fandom.com Watchmen Wiki]</span>
* <span class="plainlinks">[https://whiskey.fandom.com Whiskeypedia Wiki]</span>
| below =
* [[wikipedia:Category:Fandom (website)|Category]]
* [[wikipedia:Portal:Games|Portal]]
}}
f8c848c2d9d041968403e3950975cfd72f78029f
User:TAPCLAPgamefansince2018
2
13
25
2023-01-25T18:40:16Z
TAPCLAPgamefansince2018
30634029
Created page with "Guess who's back again."
wikitext
text/x-wiki
Guess who's back again.
64ff32f3b14b7bf9b250a920b251b32f35405c19
User:TAPCLAPgamefansince2018/List of all canon wikis
2
14
26
2023-01-30T17:32:46Z
168.8.214.169
0
Saving for now, gonna finish later on Friday when I hopefully think of a username.
wikitext
text/x-wiki
* https://community.fandom.com/wiki/Template:ABCFamilyWikis
95cda30d8cbbcfd3fd45926e41c9b98a4ee1b8d6
Template:Countyrow
10
15
27
2023-03-23T13:02:35Z
TAPCLAPgamefansince2018
30634029
Created page with "<includeonly><noinclude>{| class=wikitable</noinclude> |- !scope="row"|{{{Name}}}{{ #if: {{{Notype|}}} || {{{Type|County}}}}}, {{#switch:{{{N}}} |01=Alabama |02=Alask..."
wikitext
text/x-wiki
<includeonly><noinclude>{| class=wikitable</noinclude>
|-
!scope="row"|[[{{{Name}}}{{ #if: {{{Notype|}}} || {{{Type|County}}}}}, {{#switch:{{{N}}}
|01=Alabama
|02=Alaska
|04=Arizona
|05=Arkansas
|06=California
|08=Colorado
|09=Connecticut
|10=Delaware
|11=District of Columbia
|12=Florida
|13=Georgia
|15=Hawaii
|16=Idaho
|17=Illinois
|18=Indiana
|19=Iowa
|20=Kansas
|21=Kentucky
|22=Louisiana
|23=Maine
|24=Maryland
|25=Massachusetts
|26=Michigan
|27=Minnesota
|28=Mississippi
|29=Missouri
|30=Montana
|31=Nebraska
|32=Nevada
|33=New Hampshire
|34=New Jersey
|35=New Mexico
|36=New York
|37=North Carolina
|38=North Dakota
|39=Ohio
|40=Oklahoma
|41=Oregon
|42=Pennsylvania
|44=Rhode Island
|45=South Carolina
|46=South Dakota
|47=Tennessee
|48=Texas
|49=Utah
|50=Vermont
|51=Virginia
|53=Washington
|54=West Virginia
|55=Wisconsin
|56=Wyoming
|No FIPS code given
}}{{ #if: {{{Showstate|}}} ||{{!}}{{{Name}}}{{ #if: {{{Notype|}}} || {{{Type|County}}}}}}}]]
||{{ #if: {{{Num|}}} |[http://www.census.gov/quickfacts/table/PST045215/{{{N}}}{{{Num}}},00 {{ #if: {{{Showstate|}}} |{{{N}}} |}}{{{Num}}}]|-}}
|| {{{Noseat|}}}{{#if:{{{Seat|}}}| [[{{{Seat}}}, {{#switch:{{{N}}}
|01=Alabama
|02=Alaska
|04=Arizona
|05=Arkansas
|06=California
|08=Colorado
|09=Connecticut
|10=Delaware
|11=District of Columbia
|12=Florida
|13=Georgia
|15=Hawaii
|16=Idaho
|17=Illinois
|18=Indiana
|19=Iowa
|20=Kansas
|21=Kentucky
|22=Louisiana
|23=Maine
|24=Maryland
|25=Massachusetts
|26=Michigan
|27=Minnesota
|28=Mississippi
|29=Missouri
|30=Montana
|31=Nebraska
|32=Nevada
|33=New Hampshire
|34=New Jersey
|35=New Mexico
|36=New York
|37=North Carolina
|38=North Dakota
|39=Ohio
|40=Oklahoma
|41=Oregon
|42=Pennsylvania
|44=Rhode Island
|45=South Carolina
|46=South Dakota
|47=Tennessee
|48=Texas
|49=Utah
|50=Vermont
|51=Virginia
|53=Washington
|54=West Virginia
|55=Wisconsin
|56=Wyoming
|No FIPS code given
}}{{!}}{{{Seat}}}]]|}} {{ #if: {{{Data1|}}} | {{!}}{{!}} {{{Data1}}} | }} {{ #if: {{{Data2|}}} | {{!}}{{!}} {{{Data2}}} | }} {{ #if: {{{Data3|}}} | {{!}}{{!}} {{{Data3}}} | }} {{ #if: {{{Data4|}}} | {{!}}{{!}} {{{Data4}}} | }} {{ #if: {{{Data5|}}} | {{!}}{{!}} {{{Data5}}} | }} {{ #if: {{{Data6|}}} | {{!}}{{!}} {{{Data6}}} | }}
|| {{nts|{{{Population}}}}}
|| {{ #if: {{#ifexpr: {{{Area}}}+1 }} | {{{Area}}} | {{nts|{{{Area}}}}} sq mi<br/>({{nts|{{ #expr: ({{{Area}}} * 2.58998811) round 0}}}} km<sup>2</sup>) }} || [[Image:{{{Map|Map of {{#switch:{{{N}}}
|01=Alabama
|02=Alaska
|04=Arizona
|05=Arkansas
|06=California
|08=Colorado
|09=Connecticut
|10=Delaware
|11=District of Columbia
|12=Florida
|13=Georgia
|15=Hawaii
|16=Idaho
|17=Illinois
|18=Indiana
|19=Iowa
|20=Kansas
|21=Kentucky
|22=Louisiana
|23=Maine
|24=Maryland
|25=Massachusetts
|26=Michigan
|27=Minnesota
|28=Mississippi
|29=Missouri
|30=Montana
|31=Nebraska
|32=Nevada
|33=New Hampshire
|34=New Jersey
|35=New Mexico
|36=New York
|37=North Carolina
|38=North Dakota
|39=Ohio
|40=Oklahoma
|41=Oregon
|42=Pennsylvania
|44=Rhode Island
|45=South Carolina
|46=South Dakota
|47=Tennessee
|48=Texas
|49=Utah
|50=Vermont
|51=Virginia
|53=Washington
|54=West Virginia
|55=Wisconsin
|56=Wyoming
|No FIPS code given
}} highlighting {{{Name}}}{{ #if: {{{Notype|}}} || {{{Type|County}}}}}.svg}}}|{{ #if: {{{Size|}}} | {{{Size}}} | 150px }}|alt={{{Alt|State map highlighting {{{Name}}}{{ #if: {{{Notype|}}} || {{{Type|County}}}}}}}}|State map highlighting {{{Name}}}{{ #if: {{{Notype|}}} || {{{Type|County}}}}}]]<noinclude>
|}
</includeonly>
{{Documentation}}
<!-- Add cats and interwikis to the /doc subpage, not here! -->
</noinclude>
8ade366201696c47f24d0f7fd348f87514d0912e
Template:Countytabletop
10
16
28
2023-03-23T13:03:54Z
TAPCLAPgamefansince2018
30634029
Created page with "{| class="wikitable sortable" style="text-align: center;" |+{{#if: {{{state|}}}|Counties of {{{state}}}}} |- !scope=col style="vertical-align: top; width: {{#if:{{{region_widt..."
wikitext
text/x-wiki
{| class="wikitable sortable" style="text-align: center;"
|+{{#if: {{{state|}}}|Counties of {{{state}}}}}
|-
!scope=col style="vertical-align: top; width: {{#if:{{{region_width|}}}|{{{region_width}}}|90px}};" | {{#switch:{{{region_title|County}}}|Borough=[[Borough]]|Census Area=[[Census area]]|County=County|#default={{{region_title}}}}}<br />
!scope=col style="vertical-align: top; width:75px;" | {{abbr|FIPS|Federal Information Processing Standard}} code{{#if:{{{fips_ref|}}}|{{{fips_ref}}}}}<!--
-->{{#if: {{{region_seat_title|}}} |
!scope=col style="vertical-align: top; width: {{{region_seat_width|95px}}};" {{!}} {{#if: {{{region_seat_title|}}}|{{{region_seat_title}}}|[[County seat|Seat]]}}{{#if: {{{region_seat_ref|}}}|{{{region_seat_ref}}}}}}}<!--
-->{{#if:{{{data1_title|}}} |
!scope=col style="vertical-align: top; {{#if:{{{data1_width|}}} | width: {{{data1_width}}}px;}}" {{!}} {{{data1_title}}}<br />{{#if: {{{data1_ref|}}}|{{{data1_ref}}}}}}}<!--
-->{{#if: {{{data2_off|}}} ||
!scope=col style="vertical-align: top; width: {{{data2_width|100px}}};" {{#if: {{{data2_unsortable|}}}|class="unsortable"}} {{!}} {{#if: {{{data2_title|}}}|{{{data2_title}}}|Established}}{{#if: {{{data2_ref|}}}|{{{data2_ref}}}}}}}<!--
-->{{#if: {{{data3_off|}}} ||
!scope=col style="vertical-align: top; {{#if: {{{data3_width|}}}|width: {{{data3_width}}};}}" {{#if: {{{data3_unsortable|}}}|class="unsortable"}} {{!}} {{#if: {{{data3_title|}}}|{{{data3_title}}}|Origin}}{{#if: {{{data3_ref|}}}|{{{data3_ref}}}}}}}<!--
-->{{#if: {{{data4_off|}}} ||
!scope=col style="vertical-align: top; {{#if: {{{data4_width|}}}|width: {{{data4_width}}};}}" {{#if: {{{data4_unsortable|}}}|class="unsortable"}} {{!}} {{#if: {{{data4_title|}}}|{{{data4_title}}}|Etymology}}{{#if: {{{data4_ref|}}}|{{{data4_ref}}}}}}}<!--
-->{{#if: {{{data5_title|}}}|!! style="vertical-align: top; {{#if: {{{data5_width|}}}|width: {{{data5_width}}};}}"{{!}} {{{data5_title}}}<br />{{#if: {{{data5_ref|}}}|{{{data5_ref}}}}}}}<!--
-->{{#if: {{{data6_title|}}}|!! style="vertical-align: top; {{#if: {{{data6_width|}}}|width: {{{data6_width}}};}}"{{!}} {{{data6_title}}}<br />{{#if: {{{data6_ref|}}}|{{{data6_ref}}}}}}}
!scope=col style="vertical-align: top; width: 90px;" | Population{{#if: {{{population_year|}}}| ({{{population_year}}})}}{{#if: {{{population_ref|}}}|{{{population_ref}}}}}
!scope=col style="vertical-align: top; width: 75px;" | {{#if: {{{area_type|}}}|{{{area_type}}}|Area}}{{#if: {{{area_ref|}}}|{{{area_ref}}}}}
!scope=col style="vertical-align: top; width: {{{map_width|80px}}};" class="unsortable"|Map<noinclude>
|}{{Documentation}}</noinclude>
80d12344478b42fc9bbe9d3b34ee0b14f9970d5f
Template:Nts
10
17
29
2023-03-23T13:04:48Z
TAPCLAPgamefansince2018
30634029
Redirected page to [[Template:Number table sorting]]
wikitext
text/x-wiki
#REDIRECT [[Template:Number table sorting]]
{{R from template shortcut}}
2ed8aff6b56232b5341fed964f68e7ecc590dda6
Template:Number table sorting
10
18
30
2023-03-23T13:05:08Z
TAPCLAPgamefansince2018
30634029
Created page with "<includeonly>{{#invoke:Number table sorting|main}}</includeonly><noinclude> {{documentation}} <!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! --..."
wikitext
text/x-wiki
<includeonly>{{#invoke:Number table sorting|main}}</includeonly><noinclude>
{{documentation}}
<!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! -->
</noinclude>
b02dca5537a7cd60a2fabf4a3b0563e3b96a4dd9
Counties of Georgia (U.S. state)
0
19
31
2023-03-23T13:05:19Z
TAPCLAPgamefansince2018
30634029
Created page with "{{Countytabletop | region_width = 120px | fips_ref = <ref name="FIPS">{{cite web |url=http://www.epa.gov/enviro/html/codes/ga.html |title=EPA County FIPS Code Li..."
wikitext
text/x-wiki
{{Countytabletop
| region_width = 120px
| fips_ref = <ref name="FIPS">{{cite web |url=http://www.epa.gov/enviro/html/codes/ga.html |title=EPA County FIPS Code Listing |work=EPA.gov |access-date=2008-02-23 |archive-date=2009-11-15 |archive-url=https://web.archive.org/web/20091115111951/http://www.epa.gov/enviro/html/codes/ga.html |url-status=dead}}</ref>
| region_seat_width = 80px
| region_seat_title = County seat
| region_seat_ref = <ref name="NACO">{{cite web|url=http://www.naco.org/Template.cfm?Section=Find_a_County&Template=/cffiles/counties/state.cfm&state.cfm&statecode=GA|title=NACo β Find a county|author=National Association of Counties|access-date=2008-04-30|archive-url=https://web.archive.org/web/20080518144117/http://www.naco.org/Template.cfm?Section=Find_a_County&Template=%2Fcffiles%2Fcounties%2Fstate.cfm&state.cfm&statecode=GA|archive-date=2008-05-18|url-status=dead}}</ref>
| data2_width =
| data2_title = {{abbr|Est.|Established}}
| data2_ref = <ref name="NACO" />
| data3_width = 120px
| data3_title = Origin
| data3_ref = <ref name="NGE">{{cite web|url=http://www.newgeorgiaencyclopedia.org/nge/Categories.jsp?path=/CitiesCounties/Counties#/CitiesCounties/Counties|title=New Georgia Encyclopedia|access-date=2008-06-18|archive-url=https://web.archive.org/web/20110526195703/http://www.newgeorgiaencyclopedia.org/nge/Categories.jsp?path=%2FCitiesCounties%2FCounties#/CitiesCounties/Counties|archive-date=2011-05-26|url-status=dead}}</ref>
| data4_width = 150px
| data4_unsortable = yes
| data4_title = Etymology
| data4_ref = <ref name="NGE" />
| data5_width = 80px
| data5_title = Density
| population_ref = <ref name=2021CensusEstimate>{{cite web|title=U.S. Census Bureau QuickFacts: Georgia|url=https://www.census.gov/quickfacts/fact/table/baldwincountygeorgia,bakercountygeorgia,baconcountygeorgia,atkinsoncountygeorgia,applingcountygeorgia,GA/PST045219|work=U.S. Census Bureau, Population Division|access-date=30 March 2022}}</ref>
| area_ref = <ref name="NACO" />
}}
{{Countyrow|N=13|Num=001| Name=Appling| Seat=Baxley| Data2=1818| Data3=Land ceded by the [[Creek Indians]] in the [[Treaty of Fort Jackson]] in 1814 and the Treaty of the Creek Agency in 1818 |Data4=Colonel [[Daniel Appling]] (1787β1818), a hero of the [[War of 1812]] |Data5=36.32| Population=18488| Area=509| Size=80px}}
{{Countyrow|N=13|Num=003| Name=Atkinson| Seat=Pearson| Data2=1917| Data3=Clinch and Coffee Counties |Data4=[[William Yates Atkinson]] (1854β99), [[governor of Georgia]] (1894β98) and speaker of the [[Georgia House of Representatives]] |Data5=24.83| Population=8391| Area=338| Size=80px}}
{{Countyrow|N=13|Num=005| Name=Bacon| Seat=Alma| Data2=1914| Data3=Appling, Pierce and Ware Counties |Data4=[[Augustus Octavius Bacon]] (1839β1914), U.S. Senator (1895β1914); [[President pro tempore of the United States Senate]] |Data5=38.87| Population=11079| Area=285| Size=80px}}
{{Countyrow|N=13|Num=007| Name=Baker| Seat=Newton| Data2=1825| Data3=Early County |Data4=Colonel John Baker (died 1792), a hero of the [[American Revolutionary War]] |Data5=8.22| Population=2819| Area=343| Size=80px}}
{{Countyrow|N=13|Num=009| Name=Baldwin| Seat=Milledgeville| Data2=1803| Data3=Creek cessions of 1802 and 1805 |Data4=[[Abraham Baldwin]] (1754β1807), a [[Founding Fathers of the United States|Founding Father]]; U.S. Senator (1799β1807); one of the Georgia delegates who signed the [[U.S. Constitution]] |Data5=169.69| Population=43781| Area=258| Size=80px}}
{{Countyrow|N=13|Num=011| Name=Banks| Seat=Homer| Data2=1859 |Data3=Franklin and Habersham Counties |Data4=Dr. [[Richard E. Banks|Richard Banks]] (1784β1850), local physician noted for treating natives with smallpox |Data5=79.32| Population=18562| Area=234| Size=80px}}
{{Countyrow|N=13|Num=013| Name=Barrow| Seat=Winder| Data2=1914| Data3=Gwinnett, Jackson and Walton counties |Data4="Uncle Dave" [[David Crenshaw Barrow Jr.]] (1852β1929), [[chancellor (education)|chancellor]] of the [[University of Georgia]] (1906β29) |Data5=534.93| Population=86658| Area=162| Size=80px}}
{{Countyrow|N=13|Num=015| Name=Bartow| Seat=Cartersville| Data2=1832| Data3=Created from a portion of Cherokee County in 1832 and originally called Cass County after General [[Lewis Cass]] |Data4=General [[Francis S. Bartow]] (1816β61), [[Confederate States of America|Confederate]] [[political leader]]; first Confederate general killed in the [[American Civil War]] |Data5=240.96| Population=110843| Area=460| Size=80px}}
{{Countyrow|N=13|Num=017| Name=Ben Hill| Seat=Fitzgerald| Data2=1906| Data3=Irwin and Wilcox counties |Data4=[[Benjamin Harvey Hill]] (1823β82), U.S. Senator (1877β82) |Data5=68.09| Population=17158| Area=252| Size=80px}}
{{Countyrow|N=13|Num=019| Name=Berrien| Seat=Nashville| Data2=1856| Data3=Coffee, Irwin, and Lowndes counties |Data4=[[John Macpherson Berrien]] (1781β1856), U.S. Senator; [[U.S. Attorney General]] |Data5=40.15| Population=18147| Area=452| Size=80px}}
{{Countyrow|N=13|Num=021| Name=Bibb| Seat=Macon| Data2=1822| Data3=portions of Houston, Jones, Monroe, and Twiggs counties |Data4=Dr. [[William Wyatt Bibb]] (1780β1820), first [[Governor of Alabama]]; U.S. Senator |Data5=627.05| Population=156762| Area=250| Size=80px}}
{{Countyrow|N=13|Num=023| Name=Bleckley| Seat=Cochran| Data2=1912| Data3=Pulaski County |Data4=[[Logan Edwin Bleckley]] (1827β1907), [[Supreme Court of Georgia (U.S. state)|Georgia State Supreme Court]] [[Chief Justice]] |Data5=58.10| Population=12607| Area=217| Size=80px}}
{{Countyrow|N=13|Num=025| Name=Brantley| Seat=Nahunta| Data2=1920| Data3=Charlton, Pierce, and Wayne counties |Data4=[[William Gordon Brantley]] (1860β1934), U.S. Congressman |Data5=40.77| Population=18101| Area=444| Size=80px}}
{{Countyrow|N=13|Num=027| Name=Brooks| Seat=Quitman| Data2=1858| Data3=Lowndes and Thomas counties |Data4=Captain [[Preston S. Brooks]] (1819β57), a hero of the [[MexicanβAmerican War]]; [[Congressman]] from [[South Carolina]] |Data5=32.94| Population=16270| Area=494| Size=80px}}
{{Countyrow|N=13|Num=029| Name=Bryan| Seat=Pembroke| Data2=1793| Data3= Chatham County |Data4=Jonathan Bryan (1708β88), colonial settler; famous state representative |Data5=106.19| Population=46938| Area=442| Size=80px}}
{{Countyrow|N=13|Num=031| Name=Bulloch| Seat=Statesboro| Data2=1796| Data3=Bryan and Screven Counties |Data4=[[Archibald Bulloch]] (1729β77), Revolutionary War soldier; Speaker of the [[Georgia House of Representatives]]; acting [[Governor#United States|governor]] of Georgia (1775β77) and first governor of Georgia|Data5=120.71| Population=82442| Area=683| Size=80px}}
{{Countyrow|N=13|Num=033| Name=Burke| Seat=Waynesboro| Data2=1777| Data3=Originally organized as St George Parish |Data4=[[Edmund Burke]] (1729β97), British-American political philosopher and [[Member of Parliament (United Kingdom)|Member of Parliament]] (MP) who was sympathetic to the cause of US independence |Data5=29.25| Population=24310| Area=831| Size=80px}}
{{Countyrow|N=13|Num=035| Name=Butts| Seat=Jackson| Data2=1825| Data3=Henry and Monroe counties |Data4=Captain [[Samuel Butts]] (1777β1814), a hero of the [[Creek War]] |Data5=137.87| Population=25781| Area=187| Size=80px}}
{{Countyrow|N=13|Num=037| Name=Calhoun| Seat=Morgan| Data2=1854| Data3=Early and Baker counties |Data4=[[John C. Calhoun]] (1782β1850), U.S. Congressman; U.S. Senator; [[Vice President of the United States]] from South Carolina |Data5=19.68| Population=5509| Area=280| Size=80px}}
{{Countyrow|N=13|Num=039| Name=Camden| Seat=Woodbine| Data2=1777| Data3=St Mary and St Thomas Parishes |Data4=[[Charles Pratt, 1st Earl Camden]] (1714β94), [[Lord Chancellor]] of [[Great Britain]] who was sympathetic to the cause of the Revolution |Data5=88.36| Population=55664| Area=630| Size=80px}}
{{Countyrow|N=13|Num=043| Name=Candler| Seat=Metter| Data2=1914| Data3=Bulloch, Emanuel and Tattnall counties |Data4=[[Allen Daniel Candler]] (1834β1910), state legislator; U.S. Congressman; Governor of Georgia (1898β1902) |Data5=44.68| Population=11037| Area=247| Size=80px}}
{{Countyrow|N=13|Num=045| Name=Carroll| Seat=Carrollton| Data2=1826| Data3=Created by the state legislature from lands ceded by the Creek Indians in 1825 in the [[Treaty of Indian Springs (1825)|Treaty of Indian Springs]] |Data4=[[Charles Carroll of Carrollton|Charles Carroll]] (1737β1832), the last surviving signer of the [[U.S. Declaration of Independence|Declaration of Independence]] |Data5=244.42| Population=121968| Area=499| Size=80px}}
{{Countyrow|N=13|Num=047| Name=Catoosa| Seat=Ringgold| Data2=1853| Data3=Walker and Whitfield counties |Data4=Chief Catoosa, a [[Cherokee]] chief |Data5=422.20| Population=68397| Area=162| Size=80px}}
{{Countyrow|N=13|Num=049| Name=Charlton| Seat=Folkston| Data2=1854| Data3=Camden County |Data4=[[Robert Milledge Charlton]] (1807β54), jurist; U.S. Senator (1852β54); mayor of [[Savannah, Georgia|Savannah]] |Data5=16.35| Population=12766| Area=781| Size=80px}}
{{Countyrow|N=13|Num=051| Name=Chatham| Seat=Savannah| Data2=1777| Data3=Christ Church and St Philip Parishes |Data4=[[William Pitt, 1st Earl of Chatham|William Pitt]], [[Earl of Chatham]] (1708β78), [[British Prime Minister]] sympathetic to the Revolutionary cause |Data5=673.48| Population=296329| Area=440| Size=80px}}
{{Countyrow|N=13|Num=053| Name=Chattahoochee| Seat=Cusseta| Data2=1854| Data3=Muscogee and Marion counties |Data4=[[Chattahoochee River]], which forms the county's (and the state's) western border |Data5=36.34| Population=9048| Area=249| Size=80px}}
{{Countyrow|N=13|Num=055| Name=Chattooga| Seat=Summerville| Data2=1838| Data3=Walker and Floyd counties |Data4=[[Chattooga River (AlabamaβGeorgia)|Chattooga River]] |Data5=79.40| Population=24932| Area=314| Size=80px}}
{{Countyrow|N=13|Num=057| Name=Cherokee| Seat=Canton| Data2=1831| Data3=Cherokee Cession of 1831 |Data4=[[Cherokee]] Nation, which controlled this part of the state autonomously until 1831 |Data5=647.68| Population=274615| Area=424| Size=80px}}
{{Countyrow|N=13|Num=059| Name=Clarke| Seat=Athens| Data2=1801| Data3=Jackson County |Data4=[[Elijah Clarke]] (1733β99), a Revolutionary War hero |Data5=1,063.73| Population=128711| Area=121| Size=80px}}
{{Countyrow|N=13|Num=061| Name=Clay| Seat=Fort Gaines| Data2=1854| Data3=Randolph and Early counties |Data4=[[Henry Clay]] (1777β1852), [[United States Secretary of State|Secretary of State]]; [[Speaker of the United States House of Representatives|Speaker of the House of Representatives]]; U.S. Senator from Kentucky |Data5=14.78| Population=2882| Area=195| Size=80px}}
{{Countyrow|N=13|Num=063| Name=Clayton| Seat=Jonesboro| Data2=1858| Data3=Fayette and Henry counties |Data4=[[Augustin Smith Clayton]] (1783β1839), a local jurist and U.S. Congressman |Data5=2,077.62| Population=297100| Area=143| Size=80px}}
{{Countyrow|N=13|Num=065| Name=Clinch| Seat=Homerville| Data2=1850| Data3=Lowndes and Ware counties |Data4=General [[Duncan Lamont Clinch]] (1784β1849), a hero of the War of 1812 and the [[Seminole War]]; U.S. Congressman |Data5=8.31| Population=6725| Area=809| Size=80px}}
{{Countyrow|N=13|Num=067| Name=Cobb| Seat=Marietta| Data2=1832| Data3=Cherokee County |Data4=Colonel [[Thomas Willis Cobb]] (1784β1835), a hero of the War of 1812; U.S. Congressman |Data5=2,255.30| Population=766802| Area=340| Size=80px}}
{{Countyrow|N=13|Num=069| Name=Coffee| Seat=Douglas| Data2=1854| Data3=Clinch, Irwin, Telfair and Ware counties |Data4=General [[John E. Coffee]] (1782β1836), a hero of the War of 1812 |Data5=72.43| Population=43386| Area=599| Size=80px}}
{{Countyrow|N=13|Num=071| Name=Colquitt| Seat=Moultrie| Data2=1856| Data3=Thomas and Lowndes counties |Data4=[[Walter Terry Colquitt]] (1799β1855), Methodist pastor; U.S. Senator |Data5=82.99| Population=45812| Area=552| Size=80px}}
{{Countyrow|N=13|Num=073| Name=Columbia| |Noseat=[[Appling, Georgia|Appling]] (de jure) and [[Evans, Georgia|Evans]] (de facto) | Data2=1790| Data3= Richmond County |Data4=[[Christopher Columbus]] (1446β1506), explorer |Data5=550.48| Population=159639| Area=290| Size=80px}}
{{Countyrow|N=13|Num=075| Name=Cook| Seat=Adel| Data2=1918| Data3=Berrien County |Data4=General [[Philip Cook (general)|Philip Cook]] (1817β94), [[Confederate States of America|Confederate]] general; Georgia's [[Georgia Secretary of State|secretary of state]] |Data5=75.22| Population=17225| Area=229| Size=80px}}
{{Countyrow|N=13|Num=077| Name=Coweta| Seat=Newnan| Data2=1826| Data3=Created on Creek lands ceded in 1825 in the treaty of Indian Springs and Creek Cessions of 1826 |Data4=Coweta tribe of the [[Creek (people)|Creek]] Nation and their village near Columbus |Data5=338.50| Population=149956| Area=443| Size=80px}}
{{Countyrow|N=13|Num=079| Name=Crawford| Seat=Knoxville| Data2=1822| Data3=Houston County |Data4=[[William Harris Crawford]] (1772β1834), U.S. Senator; ambassador to France; [[Secretary of the Treasury]] |Data5=37.39| Population=12153| Area=325| Size=80px}}
{{Countyrow|N=13|Num=081| Name=Crisp| Seat=Cordele| Data2=1905| Data3=Dooly County |Data4=[[Charles Frederick Crisp]] (1845β96), Speaker of the House of Representatives |Data5=72.55| Population=19879| Area=274| Size=80px}}
{{Countyrow|N=13|Num=083| Name=Dade| Seat=Trenton| Data2=1837| Data3=Walker County |Data4=Major [[Francis L. Dade]] (1793β1835), a hero of the Seminole War |Data5=93.83| Population=16326| Area=174| Size=80px}}
{{Countyrow|N=13|Num=085| Name=Dawson| Seat=Dawsonville| Data2=1857| Data3=Gilmer and Lumpkin counties |Data4=[[William Crosby Dawson]] (1798β1857), U.S. Senator (1849β55); state legislator |Data5=135.06| Population=28497| Area=211| Size=80px}}
{{Countyrow|N=13|Num=087| Name=Decatur| Seat=Bainbridge| Data2=1823| Data3=Early County |Data4=Commodore [[Stephen Decatur]] (1779β1820), a naval hero of the actions against the [[Barbary Pirates]] in the early 19th century |Data5=48.64| Population=29038| Area=597| Size=80px}}
{{Countyrow|N=13|Num=089| Name=DeKalb| Seat=Decatur| Data2=1822| Data3=Henry, Gwinnett, and Fayette counties |Data4="Baron" [[Johann DeKalb]] (1721β80) a German who accompanied [[Gilbert du Motier, marquis de Lafayette]], and was inspector general of the Colonial Army |Data5=2,827.31| Population=757718| Area=268| Size=80px}}
{{Countyrow|N=13|Num=091| Name=Dodge| Seat=Eastman| Data2=1870| Data3=Montgomery, Pulaski and Telfair counties |Data4=[[William Earle Dodge]] (1805β1883), temperance leader; businessman from New York; a co-founder of [[Phelps Dodge|Phelps, Dodge, and Company]], a mining and metals company |Data5=39.44| Population=19759| Area=501| Size=80px}}
{{Countyrow|N=13|Num=093| Name=Dooly| Seat=Vienna| Data2=1821| Data3=Creek Cession of 1821 |Data4=Colonel [[John Dooly]] (1740β80), a hero of the [[American Revolution]] |Data5=27.70| Population=10885| Area=393| Size=80px}}
{{Countyrow|N=13|Num=095| Name=Dougherty| Seat=Albany| Data2=1853| Data3=Baker County |Data4=[[Charles Dougherty (Georgia politician)|Charles Dougherty]] (1801β53), judge from [[Athens, Georgia]] |Data5=257.10| Population=84844| Area=330| Size=80px}}
{{Countyrow|N=13|Num=097| Name=Douglas| Seat=Douglasville| Data2=1870| Data3=Campbell and Carroll counties |Data4=[[Stephen Arnold Douglas]] (1813β61), an [[Illinois]] [[Democratic Party (United States)|Democratic]] Congressman who ran against [[Abraham Lincoln]] in the [[1860 United States presidential election]] and lost |Data5=732.73| Population=145814| Area=199| Size=80px}}
{{Countyrow|N=13|Num=099| Name=Early| Seat=Blakely| Data2=1818| Data3=Creek Cession of 1814 |Data4=[[Peter Early]] (1773β1817), tenth governor of Georgia |Data5=20.78| Population=10619| Area=511| Size=80px}}
{{Countyrow|N=13|Num=101| Name=Echols| Seat=Statenville| Data2=1858| Data3=Clinch and Lowndes Counties |Data4=[[Robert Milner Echols|General Robert M. Echols]] (1798β1847), a state legislator and a hero of the [[MexicanβAmerican War]] |Data5=9.16| Population=3699| Area=404| Size=80px}}
{{Countyrow|N=13|Num=103| Name=Effingham| Seat=Springfield| Data2=1777| Data3=St Mathew and St Philip Parishes |Data4=Thomas Howard, [[Earl of Effingham]] (1746β1791), who was sympathetic with the independence movement |Data5=139.04| Population=66741| Area=480| Size=80px}}
{{Countyrow|N=13|Num=105| Name=Elbert| Seat=Elberton| Data2=1790| Data3=Wilkes County |Data4= [[Samuel Elbert]] (1740β88), a general in the Revolutionary War; became the governor of Georgia in 1785|Data5=53.06| Population=19579| Area=369| Size=80px}}
{{Countyrow|N=13|Num=107| Name=Emanuel| Seat=Swainsboro| Data2=1812| Data3=Bulloch and Montgomery Counties |Data4=Colonel [[David Emanuel (Governor of Georgia)|David Emanuel]] (1744β1808), became the governor of Georgia in 1801 |Data5=33.11| Population=22716| Area=686| Size=80px}}
{{Countyrow|N=13|Num=109| Name=Evans| Seat=Claxton| Data2=1914| Data3=Bulloch and Tattnall County |Data4=General [[Clement A. Evans|Clement Anselm Evans]] (1832β1911), a hero of the American Civil War; the commander in chief of the [[United Confederate Veterans]] |Data5=57.69| Population=10672| Area=185| Size=80px}}
{{Countyrow|N=13|Num=111| Name=Fannin| Seat=Blue Ridge| Data2=1854| Data3=Gilmer and Union Counties |Data4=Colonel [[James Fannin|James Walker Fannin Jr.]] (1809β36), a hero of the [[Texas Revolution]] |Data5=66.88| Population=25817| Area=386| Size=80px}}
{{Countyrow|N=13|Num=113| Name=Fayette| Seat=Fayetteville| Data2=1821| Data3=Creek Cession of 1821 |Data4=[[Gilbert du Motier, marquis de Lafayette]] (1757β1834), a French hero of the Revolutionary War | Data5=612.05| Population=120574| Area=197| Size=80px}}
{{Countyrow|N=13|Num=115| Name=Floyd| Seat=Rome| Data2=1832| Data3=Cherokee County |Data4=General [[John Floyd (Georgia politician)|John Floyd]] (1769β1839), soldier, U.S. Congressman |Data5=192.54| Population=98771| Area=513| Size=80px}}
{{Countyrow|N=13|Num=117| Name=Forsyth| Seat=Cumming| Data2=1832| Data3=Cherokee County |Data4=[[John Forsyth (politician)|John Forsyth]] (1780β1841), [[United States Secretary of State|Secretary of State]] under President [[Martin Van Buren]] | Data5=1,151.35| Population=260206| Area=226| Size=80px}}
{{Countyrow|N=13|Num=119| Name=Franklin| Seat=Carnesville| Data2=1784| Data3=Cherokee and Creek Cessions of 1783 |Data4=[[Benjamin Franklin]] (1706β1790), writer, inventor, philosopher, publisher, and a [[Founding Fathers of the United States|Founding Father]] of the United States |Data5=90.44| Population=23785| Area=263| Size=80px}}
{{Countyrow|N=13|Num=121| Name=Fulton| Seat=Atlanta| Data2=1853| Data3=DeKalb County + the former Campbell and Milton Counties and a portion of Cobb County |Data4=[[Hamilton Fulton]] (1781β1833), a Scottish civil and hydraulic engineer. | Data5=2,013.86|Population=1065334| Area=529| Size=80px}}
{{Countyrow|N=13|Num=123| Name=Gilmer| Seat=Ellijay| Data2=1832| Data3=Cherokee County |Data4=[[George Rockingham Gilmer]] (1780β1859), 16th governor of Georgia |Data5=75.00| Population=32026| Area=427| Size=80px}}
{{Countyrow|N=13|Num=125| Name=Glascock| Seat=Gibson| Data2=1857| Data3=Warren County |Data4=General [[Thomas Glascock]] (1780β1841), a hero of the War of 1812 and the Seminole War of 1817; U.S. Congressman |Data5=20.27| Population=2919| Area=144| Size=80px}}
{{Countyrow|N=13|Num=127| Name=Glynn| Seat=Brunswick| Data2=1777| Data3=St David and St Patrick Parishes |Data4=[[John Glynn]] (1722β79), British [[Member of Parliament]] and [[Serjeant-at-law]], who was sympathetic with the cause of American independence |Data5=200.80| Population=84739| Area=422| Size=80px}}
{{Countyrow|N=13|Num=129| Name=Gordon| Seat=Calhoun| Data2=1850| Data3=Cass (now Bartow) and Floyd Counties |Data4=[[William Washington Gordon]] (1796β1842), first president of the [[Central of Georgia Railroad]] |Data5=164.05| Population=58237| Area=355| Size=80px}}
{{Countyrow|N=13|Num=131| Name=Grady| Seat=Cairo| Data2=1905| Data3=Decatur and Thomas Counties |Data4=[[Henry W. Grady|Henry Woodfin Grady]] (1850β89), orator; managing editor of the ''[[Atlanta Constitution]]'' |Data5=56.59| Population=25918| Area=458| Size=80px}}
{{Countyrow|N=13|Num=133| Name=Greene| Seat=Greensboro| Data2=1786| Data3=Washington County |Data4=General [[Nathanael Greene]] (1742β86), a hero of the Revolutionary War |Data5=50.35| Population=19536| Area=388| Size=80px}}
{{Countyrow|N=13|Num=135| Name=Gwinnett| Seat=Lawrenceville| Data2=1818| Data3=Cherokee Cession of 1817 and Creek Cession of 1818 |Data4=[[Button Gwinnett]] (1735β1777), one of Georgia's delegates to the [[Continental Congress]] who signed the Declaration of Independence |Data5=2,227.59| Population=964546| Area=433| Size=80px}}
{{Countyrow|N=13|Num=137| Name=Habersham| Seat=Clarkesville| Data2=1818| Data3=Cherokee Cessions of 1817 and 1819 |Data4=Colonel [[Joseph Habersham]] (1751β1815), a hero of the Revolutionary War; [[U.S. Postmaster General]] in the Cabinet of [[George Washington]] |Data5=168.25| Population=46774| Area=278| Size=80px}}
{{Countyrow|N=13|Num=139| Name=Hall| Seat=Gainesville| Data2=1818| Data3=Cherokee Cessions of 1817 and 1819 |Data4=Dr. [[Lyman Hall]] (1724β90), one of Georgia's delegates to the Continental Congress who signed the Declaration of Independence; became the governor of Georgia in 1783 | Data5=526.32| Population=207369| Area=394| Size=80px}}
{{Countyrow|N=13|Num=141| Name=Hancock| Seat=Sparta| Data2=1793| Data3=Greene and Washington counties |Data4=[[John Hancock]] (1737β93), President of the Continental Congress; first signer of the Declaration of Independence |Data5=18.25| Population=8630| Area=473| Size=80px}}
{{Countyrow|N=13|Num=143| Name=Haralson| Seat=Buchanan| Data2=1856| Data3=Carroll and Polk Counties |Data4=General [[Hugh A. Haralson|Hugh Anderson Haralson]] (1805β54), U.S. Congressman |Data5=108.41| Population=30572| Area=282| Size=80px}}
{{Countyrow|N=13|Num=145| Name=Harris| Seat=Hamilton| Data2=1827| Data3=Muscogee and Troup counties |Data4=Charles Harris (1772β1827), prominent attorney from [[Savannah, Georgia|Savannah]] |Data5=76.78| Population=35626| Area=464| Size=80px}}
{{Countyrow|N=13|Num=147| Name=Hart| Seat=Hartwell| Data2=1853| Data3=Elbert and Franklin counties |Data4=[[Nancy Hart|Nancy Morgan Hart]] (1735β1830), a heroine of the Revolutionary War | Data5=113.83| Population=26409| Area=232| Size=80px}}
{{Countyrow|N=13|Num=149| Name=Heard| Seat=Franklin| Data2=1830| Data3=Carroll, Coweta and Troup Counties |Data4=[[Stephen Heard]] (1740β1815), a hero of the Revolutionary War | Data5=39.07| Population=11565| Area=296| Size=80px}}
{{Countyrow|N=13|Num=151| Name=Henry| Seat=McDonough| Data2=1821| Data3=Creek Cession of 1821 |Data4=[[Patrick Henry]] (1736β99), prominent lawyer, orator, and a [[Founding Fathers of the United States|Founding Father]] of the United States |Data5=759.24| Population=245235| Area=323| Size=80px}}
{{Countyrow|N=13|Num=153| Name=Houston| Seat=Perry| Data2=1821| Data3=Creek Cession of 1821 |Data4=[[John Houstoun]] (1744β1796), member of the Continental Congress; became governor of Georgia in 1778 | Data5=442.52| Population=166829| Area=377| Size=80px}}
{{Countyrow|N=13|Num=155| Name=Irwin| Seat=Ocilla| Data2=1818| Data3=Creek Cessions of 1814 and 1818 |Data4=[[Jared Irwin]] (1751β1818), the governor who rescinded the [[Yazoo land scandal|Yazoo Act]] in 1796 | Data5=26.94| Population=9618| Area=357| Size=80px}}
{{Countyrow|N=13|Num=157| Name=Jackson| Seat=Jefferson| Data2=1796| Data3=Franklin County |Data4=General [[James Jackson (Georgia politician)|James Jackson]] (1757β1806), a hero of the Revolutionary War | Data5=234.75| Population=80286| Area=342| Size=80px}}
{{Countyrow|N=13|Num=159| Name=Jasper| Seat=Monticello| Data2=1807| Data3=Baldwin (FKA Randolph County 1807β12) |Data4=Sergeant [[William Jasper]] (1750β1779), a hero of the Revolutionary War |Data5=41.29| Population=15278| Area=370| Size=80px}}
{{Countyrow|N=13|Num=161| Name=Jeff Davis| Seat=Hazlehurst| Data2=1905| Data3=Appling and Coffee counties |Data4=[[Jefferson Davis]] (1808β89), the first and only [[President of the Confederate States of America]] |Data5=44.66| Population=14872| Area=333| Size=80px}}
{{Countyrow|N=13|Num=163| Name=Jefferson| Seat=Louisville| Data2=1796| Data3=Burke and Warren Counties |Data4=[[Thomas Jefferson]] (1743β1826), third [[President of the United States]] |Data5=29.40| Population=15524| Area=528| Size=80px}}
{{Countyrow|N=13|Num=165| Name=Jenkins| Seat=Millen| Data2=1905| Data3=Bulloch, Burke, Emanuel, and Screven Counties |Data4=[[Charles J. Jenkins|Charles Jones Jenkins]] (1805β83), governor of Georgia, who was the author of the famous [[Georgia Platform]] of 1850 | Data5=24.68| Population=8639| Area=350| Size=80px}}
{{Countyrow|N=13|Num=167| Name=Johnson| Seat=Wrightsville| Data2=1858| Data3=Emanuel, Laurens and Washington counties |Data4=[[Herschel Vespasian Johnson]] (1812β80), U.S. Senator; Governor of Georgia |Data5=30.13| Population=9160| Area=304| Size=80px}}
{{Countyrow|N=13|Num=169| Name=Jones| Seat=Gray| Data2=1807| Data3=Baldwin County |Data4=[[James Jones (Georgia politician)|James Jones]] (1769β1801), U.S. Congressman |Data5=72.08| Population=28400| Area=394| Size=80px}}
{{Countyrow|N=13|Num=171| Name=Lamar| Seat=Barnesville| Data2=1920| Data3=Monroe and Pike Counties |Data4=[[Lucius Quintus Cincinnatus Lamar (II)|Lucius Quintus Cincinnatus Lamar]] (1825β93), U.S. Senator; Associate Justice of the [[Supreme Court of the United States|U.S. Supreme Court]] |Data5=103.14| Population=19080| Area=185| Size=80px}}
{{Countyrow|N=13|Num=173| Name=Lanier| Seat=Lakeland| Data2=1920| Data3=Berrien, Clinch and Lowndes Countries |Data4=[[Sidney Lanier]] (1842β1881), attorney, linguist, mathematician,<ref>{{cite AV media |last=Daniel |first=Donald D. |date=November 4, 2006 |title=Birthplace of Sidney Lanier Marker |url=https://www.hmdb.org/Photos/1/Photo1848o.jpg |archive-url=https://web.archive.org/web/20210302200644/https://www.hmdb.org/Photos/1/Photo1848o.jpg |access-date=March 2, 2021 |archive-date=March 2, 2021 |url-status=live}}</ref> and musician |Data5=52.98| Population=9907| Area=187| Size=80px}}
{{Countyrow|N=13|Num=175| Name=Laurens| Seat=Dublin| Data2=1807| Data3=Wilkinson County |Data4=Colonel [[John Laurens]] (1754β82), aide to [[George Washington]] during the Revolutionary War |Data5=60.94| Population=49547| Area=813| Size=80px}}
{{Countyrow|N=13|Num=177| Name=Lee| Seat=Leesburg| Data2=1826| Data3=Creek Cessions of 1826 |Data4=Lieutenant Colonel [[Henry Lee III]] (1732β1794), a hero of the Revolutionary War, who attained the nickname "Light-Horse Harry" | Data5=93.85| Population=33411| Area=356| Size=80px}}
{{Countyrow|N=13|Num=179| Name=Liberty| Seat=Hinesville| Data2=1777| Data3=St Andrew, St James, and St John Parishes |Data4=Named in honor of the noted patriotism of the citizens of [[Midway, Georgia|Midway]] in their support of the cause of colonial independence |Data5=126.61| Population=65711| Area=519| Size=80px}}
{{Countyrow|N=13|Num=181| Name=Lincoln| Seat=Lincolnton| Data2=1796| Data3=Wilkes County |Data4=General [[Benjamin Lincoln]] (1733β1810), a hero of the Revolutionary War; was later assigned to the suppression of [[Shays' Rebellion]] |Data5=36.73| Population=7749| Area=211| Size=80px}}
{{Countyrow|N=13|Num=183| Name=Long| Seat=Ludowici| Data2=1920| Data3=Liberty County |Data4=Dr. [[Crawford Williamson Long]] (1815β78), in 1842 the first man to use [[diethyl ether]] as an [[anesthesia|anesthetic]] for dental surgery | Data5=42.77| Population=17152| Area=401| Size=80px}}
{{Countyrow|N=13|Num=185| Name=Lowndes| Seat=Valdosta| Data2=1825| Data3=Irwin County |Data4=William Jones Lowndes (1782β1822), prominent figure in the affairs of [[South Carolina]] throughout the formative years of the United States |Data5=236.66| Population=119276| Area=504| Size=80px}}
{{Countyrow|N=13|Num=187| Name=Lumpkin| Seat=Dahlonega| Data2=1832| Data3=Cherokee, Habersham, and Hall Counties |Data4=[[Wilson Lumpkin]] (1783β1870), Governor of Georgia; U.S. Senator |Data5=120.70| Population=34278| Area=284| Size=80px}}
{{Countyrow|N=13|Num=193| Name=Macon| Seat=Oglethorpe| Data2=1837| Data3=Houston and Marion Counties |Data4=General [[Nathaniel Macon]] (1758β1837), Speaker of the House of Representatives; U.S. Senator |Data5=29.79| Population=12004| Area=403| Size=80px}}
{{Countyrow|N=13|Num=195| Name=Madison| Seat=Danielsville| Data2=1811| Data3=Clarke, Elbert, Franklin, Jackson and Oglethorpe Counties |Data4=[[James Madison]] (1751β1836), fourth [[President of the United States]]; chief writer of the [[U.S. Constitution]] |Data5=108.75| Population=30885| Area=284| Size=80px}}
{{Countyrow|N=13|Num=197| Name=Marion| Seat=Buena Vista| Data2=1827| Data3=Lee and Muscogee Counties |Data4=General [[Francis Marion]] (1732β95), the "Swamp Fox"; a hero of the Revolutionary War |Data5=20.27| Population=7440| Area=367| Size=80px}}
{{Countyrow|N=13|Num=189| Name=McDuffie| Seat=Thomson| Data2=1870| Data3=Columbia and Warren |Data4=[[George McDuffie]] (1790β1851), orator and [[governor of South Carolina]] |Data5=83.20| Population=21633| Area=260| Size=80px}}
{{Countyrow|N=13|Num=191| Name=McIntosh| Seat=Darien| Data2=1793| Data3=Liberty County |Data4=General [[Lachlan McIntosh]] (1727β1806), a hero of the Revolutionary War | Data5=25.63| Population=11123| Area=434| Size=80px}}
{{Countyrow|N=13|Num=199| Name=Meriwether| Seat=Greenville| Data2=1827| Data3=Formed from Troup County |Data4=General [[David Meriwether (representative)|David Meriwether]] (1755β1822), a hero of the Revolutionary War; U.S. Congressman | Data5=41.34| Population=20793| Area=503| Size=80px}}
{{Countyrow|N=13|Num=201| Name=Miller| Seat=Colquitt| Data2=1856| Data3=Baker and Early Counties |Data4=Andrew Jackson Miller (1806β56), president of the [[Medical College of Georgia]] | Data5=20.92| Population=5919| Area=283| Size=80px}}
{{Countyrow|N=13|Num=205| Name=Mitchell| Seat=Camilla| Data2=1857| Data3=Baker County |Data4=Gen. Henry Mitchell (1760β1839), a hero of the Revolutionary War | Data5=42.03| Population=21521| Area=512| Size=80px}}
{{Countyrow|N=13|Num=207| Name=Monroe| Seat=Forsyth| Data2=1821| Data3=Creek Cession of 1821 |Data4=[[James Monroe]] (1758β1831), the fifth [[President of the United States]] and the creator of the [[Monroe Doctrine]] of 1823 |Data5=72.51| Population=28712| Area=396| Size=80px}}
{{Countyrow|N=13|Num=209| Name=Montgomery| Seat=Mount Vernon| Data2=1793| Data3=Washington County |Data4=General [[Richard Montgomery]] (1738β75), hero of the Revolutionary War | Data5=35.32| Population=8653| Area=245| Size=80px}}
{{Countyrow|N=13|Num=211| Name=Morgan| Seat=Madison| Data2=1807| Data3=Baldwin County |Data4=General [[Daniel Morgan]] (1736β1802), a hero of the Revolutionary War; U.S. Congressman | Data5=58.96| Population=20635| Area=350| Size=80px}}
{{Countyrow|N=13|Num=213| Name=Murray| Seat=Chatsworth| Data2=1832| Data3=Cherokee County |Data4=Thomas W. Murray (1790β1832), famous [[Georgia House of Representatives|state legislator]] |Data5=116.14| Population=39951| Area=344| Size=80px}}
{{Countyrow|N=13|Num=215| Name=Muscogee| Seat=Columbus| Data2=1826| Data3=Creek Cession of 1826 |Data4=[[Muscogee (Creek)|Muskogee]] ethnic group, to which the [[Creek (people)|Creek]] and [[Seminole]] Nations belong |Data5=951.93| Population=205617| Area=216| Size=80px}}
{{Countyrow|N=13|Num=217| Name=Newton| Seat=Covington| Data2=1821| Data3=Henry, Jasper, and Walton Counties |Data4=Sergeant [[John Newton (soldier)|John Newton]] (1755β80), a hero of the Revolutionary War |Data5=417.95| Population=115355| Area=276| Size=80px}}
{{Countyrow|N=13|Num=219| Name=Oconee| Seat=Watkinsville| Data2=1875| Data3=Clarke County |Data4=[[Oconee River]], which forms its eastern boundary |Data5=231.31| Population=43023| Area=186| Size=80px}}
{{Countyrow|N=13|Num=221| Name=Oglethorpe| Seat=Lexington| Data2=1793| Data3=Wilkes County |Data4=General [[James Oglethorpe|James Edward Oglethorpe]] (1696β1785), the founder of the Colony of Georgia |Data5=34.33| Population=15140| Area=441| Size=80px}}
{{Countyrow|N=13|Num=223| Name=Paulding| Seat=Dallas| Data2=1832| Data3=Cherokee County |Data4=John Paulding (1759β1818), a hero of the Revolutionary War |Data5=553.44| Population=173780| Area=314| Size=80px}}
{{Countyrow|N=13|Num=225| Name=Peach| Seat=Fort Valley| Data2=1924| Data3=Houston and Macon Counties |Data4=Its location in [[Central Georgia]] is one of the richest peach-producing regions in the country. |Data5=188.19| Population=28417| Area=151| Size=80px}}
{{Countyrow|N=13|Num=227| Name=Pickens| Seat=Jasper| Data2=1853| Data3=Cherokee and Gilmer counties |Data4=General [[Andrew Pickens (congressman)|Andrew Pickens]] (1739β1817), a hero of the Revolutionary War; U.S. Congressman |Data5=146.66| Population=34024| Area=232| Size=80px}}
{{Countyrow|N=13|Num=229| Name=Pierce| Seat=Blackshear| Data2=1857| Data3=Appling and Ware Counties |Data4=[[Franklin Pierce]] (1804β1869), fourteenth [[President of the United States]] |Data5=58.24| Population=19976| Area=343| Size=80px}}
{{Countyrow|N=13|Num=231| Name=Pike| Seat=Zebulon| Data2=1822| Data3=Monroe County |Data4=General [[Zebulon Pike]] (1779β1813), explorer and a hero of the War of 1812 |Data5=89.34| Population=19477| Area=218| Size=80px}}
{{Countyrow|N=13|Num=233| Name=Polk| Seat=Cedartown| Data2=1851| Data3=Floyd and Paulding Counties |Data4=[[James K. Polk|James Knox Polk]] (1795β1849), eleventh [[President of the United States]] |Data5=139.86| Population=43496| Area=311| Size=80px}}
{{Countyrow|N=13|Num=235| Name=Pulaski| Seat=Hawkinsville| Data2=1808| Data3=Laurens County |Data4=Count [[Kazimierz PuΕaski]] of [[Poland]] (1748β79), a hero of the Revolutionary War |Data5=40.15| Population=9917| Area=247| Size=80px}}
{{Countyrow|N=13|Num=237| Name=Putnam| Seat=Eatonton| Data2=1807| Data3=Baldwin County |Data4=General [[Israel Putnam]] (1718β90), a hero of the Revolutionary War |Data5=65.65| Population=22585| Area=344| Size=80px}}
{{Countyrow|N=13|Num=239| Name=Quitman| Noseat=[[Georgetown, Quitman County, Georgia|Georgetown]]| Data2=1858| Data3=Randolph and Stewart counties |Data4=General [[John A. Quitman|John Anthony Quitman]] (1799β1858), a hero of the Mexican-American War |Data5=14.76| Population=2243| Area=152| Size=80px}}
{{Countyrow|N=13|Num=241| Name=Rabun| Seat=Clayton| Data2=1819| Data3=Cherokee Cession of 1819 |Data4=[[William Rabun]] (1771β1819), Governor of Georgia (1817β19) | Data5=46.14| Population=17119| Area=371| Size=80px}}
{{Countyrow|N=13|Num=243| Name=Randolph| Seat=Cuthbert| Data2=1828| Data3=Lee County |Data4=[[John Randolph of Roanoke]] (1773β1833), U.S. Congressman |Data5=14.66| Population=6287| Area=429| Size=80px}}
{{Countyrow|N=13|Num=245| Name=Richmond| Seat=Augusta| Data2=1777| Data3=St Paul Parish |Data4=[[Charles Lennox, 3rd Duke of Richmond]] (1735β1806), who was sympathetic to the cause of colonial independence |Data5=634.79| Population=205673| Area=324| Size=80px}}
{{Countyrow|N=13|Num=247| Name=Rockdale| Seat=Conyers| Data2=1870| Data3=Henry and Newton counties |Data4=Rockdale Church, which was so named for the subterranean bed of [[granite]] that underlies this region of the state |Data5=718.18| Population=94082| Area=131| Size=80px}}
{{Countyrow|N=13|Num=249| Name=Schley| Seat=Ellaville| Data2=1857| Data3=Marion and Sumter counties |Data4=[[William Schley]] (1786β1858), governor of Georgia (1835β37) |Data5=26.65| Population=4478| Area=168| Size=80px}}
{{Countyrow|N=13|Num=251| Name=Screven| Seat=Sylvania| Data2=1793| Data3=Burke and Effingham Counties |Data4=General James Screven (1744β1778), a hero of the Revolutionary War |Data5=21.77| Population=14105| Area=648| Size=80px}}
{{Countyrow|N=13|Num=253| Name=Seminole| Seat=Donalsonville| Data2=1920| Data3=Decatur and Early Counties |Data4=Seminole Nation |Data5=38.64| Population=9197| Area=238| Size=80px}}
{{Countyrow|N=13|Num=255| Name=Spalding| Seat=Griffin| Data2=1851| Data3=Fayette, Henry, and Pike County |Data4=[[Thomas Spalding]] (1774β1851), U.S. Congressman, state legislator, and agriculturalist | Data5=342.97| Population=67909| Area=198| Size=80px}}
{{Countyrow|N=13|Num=257| Name=Stephens| Seat=Toccoa| Data2=1905| Data3=Franklin and Habersham Counties |Data4=[[Alexander Stephens]] (1812β83), U.S. Congressman; Governor of Georgia; first and only Vice President of the [[Confederate States of America]] |Data5=150.08| Population=26865| Area=179| Size=80px}}
{{Countyrow|N=13|Num=259| Name=Stewart| Seat=Lumpkin| Data2=1830| Data3=Randolph County |Data4=General [[Daniel Stewart (Brigadier General)|Daniel Stewart]] (1759β1829), a hero of the Revolutionary War and the War of 1812 | Data5=11.64| Population=5341| Area=459| Size=80px}}
{{Countyrow|N=13|Num=261| Name=Sumter| Seat=Americus| Data2=1831| Data3=Lee County |Data4=General [[Thomas Sumter]] (1734β1832), the "Fighting Gamecock," a hero of the Revolutionary War | Data5=60.38| Population=29283| Area=485| Size=80px}}
{{Countyrow|N=13|Num=263| Name=Talbot| Seat=Talbotton| Data2=1827| Data3=Muscogee County |Data4=[[Matthew Talbot]] (1762β1827), served in the [[Georgia State Senate]] for 15 years, including two years as the President of the Senate, and Governor of Georgia for two weeks in 1819 | Data5=14.61| Population=5742| Area=393| Size=80px}}
{{Countyrow|N=13|Num=265| Name=Taliaferro| Seat=Crawfordville| Data2=1825| Data3=Greene, Hancock, Oglethorpe, Warren, and Wilkes Counties |Data4=Colonel [[Benjamin Taliaferro]] (1750β1821), U.S. Congressman; a hero of the Revolutionary War |Data5=7.99| Population=1558| Area=195| Size=80px}}
{{Countyrow|N=13|Num=267| Name=Tattnall| Seat=Reidsville| Data2=1801| Data3=Montgomery County |Data4=[[Josiah Tattnall (Senator)|Josiah Tattnall]] (1764β1803), U.S. Senator; Governor of Georgia |Data5=47.63| Population=23052| Area=484| Size=80px}}
{{Countyrow|N=13|Num=269| Name=Taylor| Seat=Butler| Data2=1852| Data3=Macon, Marion and Talbot Counties |Data4=[[Zachary Taylor]] (1784β1850), the twelfth [[President of the United States]] |Data5=20.63| Population=7799| Area=378| Size=80px}}
{{Countyrow|N=13|Num=271| Name=Telfair| Seat=McRae-Helena| Data2=1807| Data3=Wilkinson County |Data4=[[Edward Telfair]] (1735β1807), the second Governor of Georgia following the establishment of the United States | Data5=28.15| Population=12414| Area=441| Size=80px}}
{{Countyrow|N=13|Num=273| Name=Terrell| Seat=Dawson| Data2=1856| Data3=Lee and Randolph Counties |Data4=Dr. [[William Terrell]] (1778β1855), U.S. Congressman |Data5=26.68| Population=8964| Area=336| Size=80px}}
{{Countyrow|N=13|Num=275| Name=Thomas| Seat=Thomasville| Data2=1825| Data3=Decatur and Irwin Counties |Data4=General [[Jett Thomas]] (1776β1817), a hero of the War of 1812 | Data5=83.65| Population=45842| Area=548| Size=80px}}
{{Countyrow|N=13|Num=277| Name=Tift| Seat=Tifton| Data2=1905| Data3=Berrien, Irwin and Worth Counties |Data4=Colonel [[Nelson Tift]] (1810β91), a captain in the [[Confederate States Navy]]; U.S. Congressman |Data5=155.52| Population=41212| Area=265| Size=80px}}
{{Countyrow|N=13|Num=279| Name=Toombs| Seat=Lyons| Data2=1905| Data3=Emanuel, Tattnall, and Montgomery Counties |Data4=General [[Robert Toombs]] (1810β85), U.S. Senator; [[Confederate States Secretary of State]] | Data5=73.33| Population=26911| Area=367| Size=80px}}
{{Countyrow|N=13|Num=281| Name=Towns| Seat=Hiawassee| Data2=1856| Data3=Rabun and Union Counties |Data4=[[George W. Towns|George Washington Towns]] (1801β54), governor of Georgia during the [[Antebellum Age|antebellum period]] | Data5=77.56|Population=12875| Area=166| Size=80px}}
{{Countyrow|N=13|Num=283| Name=Treutlen| Seat=Soperton| Data2=1918| Data3=Emanuel and Montgomery Counties |Data4=[[John A. Treutlen]] (1726β82), the first elected Governor of Georgia (1777β78) |Data5=31.37| Population=6306| Area=201| Size=80px}}
{{Countyrow|N=13|Num=285| Name=Troup| Seat=LaGrange| Data2=1826| Data3=Creek Cession of 1826 |Data4=[[George M. Troup]] (1780β1856), Governor of Georgia (1823β27); U.S. Senator |Data5=168.41| Population=69720| Area=414| Size=80px}}
{{Countyrow|N=13|Num=287| Name=Turner| Seat=Ashburn| Data2=1905| Data3=Dooly, Irwin, Wilcox and Worth Counties |Data4=Captain [[Henry Gray Turner]] (1839β1904), U.S. Congressman; a hero of the [[American Civil War]] | Data5=31.35|Population=8966| Area=286| Size=80px}}
{{Countyrow|N=13|Num=289| Name=Twiggs| Seat=Jeffersonville| Data2=1809| Data3=Wilkinson County |Data4=General [[John Twiggs]] (1750β1816), a hero of the Revolutionary War; Governor of Georgia | Data5=21.82|Population=7856| Area=360| Size=80px}}
{{Countyrow|N=13|Num=291| Name=Union| Seat=Blairsville| Data2=1832| Data3=Cherokee County |Data4=Federal [[United States of America|union of the states]] | Data5=79.01| Population=25521| Area=323| Size=80px}}
{{Countyrow|N=13|Num=293| Name=Upson| Seat=Thomaston| Data2=1824| Data3=Crawford and Pike Counties |Data4=[[Stephen Upson]] (1786β1824), [[Georgia House of Representatives|state legislator]] | Data5=85.03| Population=27720| Area=326| Size=80px}}
{{Countyrow|N=13|Num=295| Name=Walker| Seat=LaFayette| Data2=1833| Data3=Murray County |Data4=Major [[Freeman Walker]] (1780β1827), U.S. Senator (1819β1821) | Data5=153.61| Population=68510| Area=446| Size=80px}}
{{Countyrow|N=13|Num=297| Name=Walton| Seat=Monroe| Data2=1818| Data3=Creek Cession of 1818 |Data4=[[George Walton]] (1749β1804), one of Georgia's delegates to the Continental Congress who signed the Declaration of Independence | Data5=303.50| Population=99853| Area=329| Size=80px}}
{{Countyrow|N=13|Num=299| Name=Ware| Seat=Waycross| Data2=1824| Data3=Appling County |Data4=[[Nicholas Ware]] (1769β1824), U.S. Senator (1821β24) | Data5=39.90| Population=36033| Area=903| Size=80px}}
{{Countyrow|N=13|Num=301| Name=Warren| Seat=Warrenton| Data2=1793| Data3=Columbia, Hancock, Richmond, and Wilkes Counties |Data4=General [[Joseph Warren]] (1741β75), a hero of the Revolutionary War | Data5=18.32| Population=5240| Area=286| Size=80px}}
{{Countyrow|N=13|Num=303| Name=Washington| Seat=Sandersville| Data2=1784| Data3=Creek Cession of 1783 |Data4=[[George Washington]] (1732β99), the first [[President of the United States]], although named after him as a general |Data5=29.10| Population=19785| Area=680| Size=80px}}
{{Countyrow|N=13|Num=305| Name=Wayne| Seat=Jesup| Data2=1803| Data3=Creek Cession of 1802|Data4=General [[Anthony Wayne]] (1745β96), known as "Mad Anthony Wayne"; U.S. Congressman; a hero of the Revolutionary War and the [[Northwest Indian War]] | Data5=47.10| Population=30380| Area=645| Size=80px}}
{{Countyrow|N=13|Num=307| Name=Webster| Seat=Preston| Data2=1853| Data3=Stewart County (Formally Kinchafoonee) |Data4=[[Daniel Webster]] (1782β1852), [[U.S. Secretary of State]]; supported [[Henry Clay]]'s [[Compromise of 1850]] |Data5=11.27| Population=2367| Area=210| Size=80px}}
{{Countyrow|N=13|Num=309| Name=Wheeler| Seat=Alamo| Data2=1912| Data3=Montgomery County |Data4=General [[Joseph Wheeler]] (1836β1906), U.S. Congressman; a hero of the American Civil War and the [[SpanishβAmerican War]] |Data5=25.07| Population=7471| Area=298| Size=80px}}
{{Countyrow|N=13|Num=311| Name=White| Seat=Cleveland| Data2=1857| Data3=Habersham County |Data4=Colonel John White, a hero of the Revolutionary War | Data5=117.53| Population=28442| Area=242| Size=80px}}
{{Countyrow|N=13|Num=313| Name=Whitfield| Seat=Dalton| Data2=1851| Data3=Murray County |Data4=[[George Whitefield]] (1714β70), pastor; established the [[Bethesda Orphanage]] near [[Savannah, Georgia|Savannah]] | Data5=354.65| Population=102848| Area=290| Size=80px}}
{{Countyrow|N=13|Num=315| Name=Wilcox| Seat=Abbeville| Data2=1857| Data3=Dooly, Irwin, and Pulaski counties |Data4=General Mark Wilcox (1800β50), a noted soldier and [[Georgia House of Representatives|state legislator]] |Data5=23.00| Population=8739| Area=380| Size=80px}}
{{Countyrow|N=13|Num=317| Name=Wilkes| Seat=Washington| Data2=1777| Data3=Cherokee and Creek Cessions of 1773 |Data4=[[John Wilkes]] (1727β97), a British [[Member of Parliament]] who sympathized with the cause of American independence | Data5=20.20| Population=9513| Area=471| Size=80px}}
{{Countyrow|N=13|Num=319| Name=Wilkinson| Seat=Irwinton| Data2=1803| Data3=Creek Cessions of 1802 and 1805 |Data4=General [[James Wilkinson]] (1757β1825), veteran of the Revolutionary War and of the War of 1812; [[Commanding General of the United States Army|Senior Officer of the U.S. Army]]; turned out to be an agent of the Spanish government |Data5=19.76| Population=8831| Area=447| Size=80px}}
{{Countyrow|N=13|Num=321| Name=Worth| Seat=Sylvester| Data2=1853| Data3=Dooly and Irwin Counties |Data4=General [[William J. Worth]] (1794β1849), a hero of the MexicanβAmerican War | Data5=36.06| Population=20554| Area=570| Size=80px}}
|}
57a70a8ba5b6d427350360ae3ddc670d8b0c8694
32
31
2023-03-23T13:07:56Z
TAPCLAPgamefansince2018
30634029
Blanked the page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
33
32
2023-03-23T13:20:49Z
168.8.214.169
0
wikitext
text/x-wiki
* Appling County
* Atkinson County
* Bacon County
* Baker County
* Baldwin County
* Banks County
* Barrow County
* Bartow County
* Ben Hill County
* Berrien County
* Bibb County
* Bleckley County
* Brantley County
* Brooks County
* Bryan County
* Bulloch County
* Burke County
* Butts County
* Calhoun County
* Camden County
* Candler County
* Carroll County
* Catoosa County
* Charlton County
* Chatham County
* Chattahoochee County
* Chattooga County
* Cherokee County
* Clarke County
* Clay County
* Clayton County
* Clinch County
* Cobb County
* Coffee County
* Colquitt County
* Columbia County
* Cook County
* Coweta County
* Crawford County
* Crisp County
* Dade County
* Dawson County
* Decatur County
* DeKalb County
* Dodge County
* Dooly County
* Dougherty County
* Douglas County
* Early County
* Echols County
* Effingham County
* Elbert County
* Emanuel County
* Evans County
* Fannin County
* Fayette County
* Floyd County
* Forsyth County
* Franklin County
* Fulton County
* Gilmer County
* Glascock County
* Glynn County
* Gordon County
* Grady County
* Greene County
* Gwinnett County
* Habersham County
* Hall County
* Hancock County
* Haralson County
* Harris County
* Hart County
* Heard County
* Henry County
* Houston County
* Irwin County
* Jackson County
* Jasper County
* Jeff Davis County
* Jefferson County
* Jenkins County
* Johnson County
* Jones County
* Lamar County
* Lanier County
* Laurens County
* Lee County
* Liberty County
* Lincoln County
* Long County
* Lowndes County
* Lumpkin County
* Macon County
* Madison County
* Marion County
* McDuffie County
* McIntosh County
* Meriwether County
* Miller County
* Mitchell County
* Monroe County
* Montgomery County
* Morgan County
* Murray County
* Muscogee County
* Newton County
* Oconee County
* Oglethorpe County
* Paulding County
* Peach County
* Pickens County
* Pierce County
* Pike County
* Polk County
* Pulaski County
* Putnam County
* Quitman County
* Rabun County
* Randolph County
* Richmond County
* Rockdale County
* Schley County
* Screven County
* Seminole County
* Spalding County
* Stephens County
* Stewart County
* Sumter County
* Talbot County
* Taliaferro County
* Tattnall County
* Taylor County
* Telfair County
* Terrell County
* Thomas County
* Tift County
* Toombs County
* Towns County
* Treutlen County
* Troup County
* Turner County
* Twiggs County
* Union County
* Upson County
* Walker County
* Walton County
* Ware County
* Warren County
* Washington County
* Wayne County
* Webster County
* Wheeler County
* White County
* Whitfield County
* Wilcox County
* Wilkes County
* Wilkinson County
* Worth County
fb1fc7802c7fd0efa7f1da6c5ac0b8e8d2170c7f